blob: 165645470bc1ad2e4a2d7058070de8dddd3acd1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<style>
option {
/* background-color and color are overridden for checked options */
background-color: lightgreen;
color: red;
/* properties other than background-color and color apply to checked options */
padding-left: 20px;
}
option:checked {
/* properties other than background-color and color apply normally */
text-decoration: underline;
}
</style>
<select multiple autofocus>
<option>foo</option>
<option selected>bar</option>
</select>
|