mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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-right: 50%;">left</option>
|
|
</select>
|
|
|
|
</body></html>
|