select-capitalize-sizing.html (496B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <title>select sizing with text-transform:capitalize</title> 4 <link rel="match" href="select-capitalize-sizing-ref.html"> 5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1911550"> 6 <style> 7 select { 8 text-transform: capitalize; 9 } 10 .appearance-none { 11 appearance: none; 12 padding: 0; 13 border: 1px solid; 14 } 15 </style> 16 <select> 17 <option>x x x x x</option> 18 </select> 19 <br><br> 20 <select class=appearance-none> 21 <option>x x x x x</option> 22 </select>