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
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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.