blob: 5023878964b3b2cf7bc4a7ba7f7d8a883a71678e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<head><style>
select { visibility: hidden; }
select.unthemed { -moz-appearance: none; margin: 2px 0 2px 0}
</style></head>
<body>
<div style="background: lightblue">
<select class="unthemed"></select><!--
No space here to make this more robust
in the face of different default fonts
--><select></select>
</div>
</body>
</html>
|