363858-3.html (627B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 div { width: 0 } 6 option { white-space: normal } 7 optgroup { white-space: normal } 8 </style> 9 </head> 10 <body> 11 <div> 12 <select> 13 <optgroup> 14 <option>This is option one</option> 15 <option>This is option two</option> 16 <option>This is option three which is long</option> 17 <option>This is option four</option> 18 </optgroup> 19 </select> 20 </div> 21 <div> 22 <select size="3"> 23 <optgroup> 24 <option>This is option one</option> 25 <option>This is option two</option> 26 <option>This is option three which is long</option> 27 <option>This is option four</option> 28 </optgroup> 29 </select> 30 <div> 31 </body> 32 </html> 33 34