| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>CSS Reftest Reference</title> | |
| <link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu"> | |
| <style> | |
| select { | |
| color: transparent; | |
| } | |
| .minWidth { | |
| min-width: 100px; | |
| } | |
| .width { | |
| width: 100px; | |
| } | |
| .floatLWidth { | |
| float: left; | |
| width: 100px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <select class="floatLWidth"> | |
| </select> | |
| <br style="clear:both;"> | |
| <select class="minWidth"> | |
| </select> | |
| <br> | |
| <select class="width"> | |
| </select> | |
| </body> | |
| </html> |