contain-size-select-elem-003-ref.html (590B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Reftest Reference</title> 6 <link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu"> 7 <style> 8 select { 9 color: transparent; 10 } 11 .minWidth { 12 min-width: 100px; 13 } 14 .width { 15 width: 100px; 16 } 17 .floatLWidth { 18 float: left; 19 width: 100px; 20 } 21 </style> 22 </head> 23 <body> 24 <select multiple class="floatLWidth"> 25 </select> 26 <br style="clear:both;"> 27 28 <select multiple class="minWidth"> 29 </select> 30 <br> 31 32 <select multiple class="width"> 33 </select> 34 </body> 35 </html>