blob: 51104e4a1bc3f6f8e71db85c1f57960c496b1a15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<style>
option {color: green}
option[selected] {color: red}
option:not([selected]):not(:default) + option {color: green}
</style>
</head>
<body onload='document.getElementById("one").removeAttribute("selected");'>
<select size="2">
<option id="one" selected="selected">Should be no red</option>
<option id="two">Should be no red</option>
</select>
</body>
</html>
|