mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
20 lines
240 B
HTML
20 lines
240 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-left: 50%;">right</option>
|
|
</select>
|
|
|
|
</body></html>
|