Jump to content

CSS and <select>


rhyspaterson

Recommended Posts

Dont hold me to this one, havent had chance to look it up but I believe when I wanted to do it I just added a class to each of the option fields (mine represented answers which would result in acceptance by being red or green)

 

<option value="option1" class="green">This option is ok</option>

<option value="option2" class="red">This option is not ok</option>

 

Then in the css just style it using:

 

option.red { background-color:#ff0000; }

option.green { background-color:#00ff00; }

 

Hope this helps

 

Ryan

Link to comment
https://forums.phpfreaks.com/topic/53266-css-and/#findComment-263249
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.