summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/348516-1.html
blob: a28e258a8a22e9e5257e09748f0d019cc309394e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html><head>
 
<style>

select {
    width: 200px;
}
option {
    padding: 0;
    width: 50%;
    background-color: cyan;
}
</style></head><body>

<select size="3">
<option style="margin-right: auto;">left</option>
<option style="margin-left: auto;">right</option>
<option style="margin-left: auto; margin-right: auto;">center</option>
</select>

</body></html>