OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 #foo { | |
4 background-color: lightgreen; | |
5 color: red; | |
6 padding-left: 20px; | |
7 } | |
8 #bar { | |
9 padding-left: 20px; | |
10 text-decoration: underline; | |
11 } | |
12 </style> | |
13 <select multiple autofocus> | |
14 <option id="foo">foo</option> | |
15 <option id="bar" selected>bar</option> | |
16 </select> | |
OLD | NEW |