blob: 104f5770e277a424b3aecdeb7f67cf6e239f75ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<head>
<style>
option {color: green}
</style>
</head>
<body>
<select size="2">
<option id="one" disabled="disabled">Should be no red</option>
<option id="two">Should be no red</option>
</select>
</body>
</html>
|