option
elements) with CSSThis demo page is related to the article Styling form controls with CSS, revisited. For more info on the purpose of this page, please read the article.
Each multiple selection menu control consists of this HTML:
<select multiple size="3">
<option selected>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
<option>Option 4</option>
<option>Option 5</option>
</select>
The following CSS rules are used to style the option
elements:
#el01 option {width:20em} /* Width */
#el02 option { /* Text and background colour, blue on light gray */
color:#00f;
background-color:#ddd;
}
#el03 option {background:url(/i/icon-info.gif) no-repeat 100% 50%} /* Background image */
#el04 option {border-width:6px} /* Border width */
#el05 option {border:2px dotted #00f} /* Border width, style and colour */
#el06 option {border:none} /* No border */
#el07 option {font-family:"Courier New",Courier} /* Different font */
#el08 option {font-size:2em} /* Bigger text */
#el09 option {font-size:0.5em} /* Smaller text */
#el10 option {font-weight:bold} /* Bold text */
#el11 option {padding:1em} /* Increase padding */
#el12 option {text-align:right} /* Change text alignment */
[selected] { /* Text colour and font weight, red and bold */
color:#f00;
font-weight:bold;
}
In your current browser, with your current settings, the option
elements look like this:
Note that the first option
element of each select
element is selected. Different browsers have different ways of indicating this, and may or may not apply the [selected]
rule.
Here are screenshots from several browsers on different operating systems: