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