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