Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/select/select-capitalize-sizing.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset=utf-8>
<title>select sizing with text-transform:capitalize</title>
<link rel="match" href="select-capitalize-sizing-ref.html">
<style>
select {
text-transform: capitalize;
}
.appearance-none {
appearance: none;
padding: 0;
border: 1px solid;
}
</style>
<select>
<option>x x x x x</option>
</select>
<br><br>
<select class=appearance-none>
<option>x x x x x</option>
</select>