Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 div { width: 0 }
6 option { white-space: normal }
7 optgroup { white-space: normal }
8 * { -moz-appearance: none }
9 </style>
10 </head>
11 <body>
12 <div>
13 <select>
14 <optgroup>
15 <option>This is option one</option>
16 <option>This is option two</option>
17 <option>This is option three which is long</option>
18 <option>This is option four</option>
19 </optgroup>
20 </select>
21 </div>
22 <div>
23 <select size="3">
24 <optgroup>
25 <option>This is option one</option>
26 <option>This is option two</option>
27 <option>This is option three which is long</option>
28 <option>This is option four</option>
29 </optgroup>
30 </select>
31 <div>
32 </body>
33 </html>