blob: 1c13e27e54ea76363da045e974a505a34364991e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html><head>
<style>
select {
width: 200px;
}
option {
padding: 0;
background-color: cyan;
}
</style></head><body>
<select size="3">
<option>left</option>
</select>
</body></html>
|