| <!doctype html> | |
| <meta charset="utf-8"> | |
| <title>CSS test reference</title> | |
| <style> | |
| select { | |
| width: 100px; | |
| color: transparent; | |
| /* Makes mismatches less likely by not using rounded corners etc */ | |
| appearance: none; | |
| border: none; | |
| background: none; | |
| } | |
| </style> | |
| <select><option>abc</option></select> |