mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
338 B
HTML
24 lines
338 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
select { width: 100%; -moz-box-sizing: border-box }
|
|
* { -moz-appearance: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<select>
|
|
<option>This is option one</option>
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<select size="3">
|
|
<option style="visibility: hidden">This is option one</option>
|
|
</select>
|
|
<div>
|
|
</body>
|
|
</html>
|
|
|
|
|