Jump to content

CSS and <select>


rhyspaterson

Recommended Posts

Hey guys,

 

Just wondering if it's possible to use CSS to change the background color of a <select> form menu list depending on it's <option value>. I.e if the option value is 1, make the bg color green, but if it's 0 make it red.

 

Or is this more a javascript thing..?

 

Thanks guys

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

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

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.