The-Master
01-11-2008, 06:55 PM
Can I colour individual segments of select boxes (list) in forms?
Thanks.
Thanks.
|
Click to See Complete Forum and Search --> : CSS colouring individual select boxes The-Master 01-11-2008, 06:55 PM Can I colour individual segments of select boxes (list) in forms? Thanks. NogDog 01-11-2008, 09:56 PM You can style a somewhat limited number of properties for the <option> elements. I think there may some variation between browsers as to which are supported. A simple example: style sheet: .red { color: red; background-color: white; } .blue { color: navy; background-color: yellow; } HTML: <select name='test'> <option class='red'>This is red</option> <option class='blue'>This is blue</option> </select> PHP Builder
Copyright Internet.com Inc. All Rights Reserved. |