Posted by Philip Ronan on 07/08/05 15:51
"Fabri" wrote:
> Is it possible to assign a different color in a select multiple?
>
> <select multiple>
> <option>Here I would like red</option>
> <option>Here I would like different color</option>
> </select>
Not reliably, no. The following might work in a few browsers:
<HEAD>
:
<STYLE type="text/css">
.red { color: #f00; }
.blue { color: #00f; }
</STYLE>
:
</HEAD>
<BODY>
:
<select multiple>
<option class="red">Here I would like red</option>
<option class="blue">Here I would like different color</option>
</select>
--
phil [dot] ronan @ virgin [dot] net
http://vzone.virgin.net/phil.ronan/
Navigation:
[Reply to this message]
|