mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
22 lines
362 B
HTML
22 lines
362 B
HTML
<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>
|