Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/replaced-elements/the-select-element/select-button-min-height-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>min-height and height both trigger same rendering for select and buttons by default</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="match" href="select-button-min-height-001-ref.html">
<style>
select, input, button { min-height: 100px; }
</style>
<div>
<select><option>Select</option></select>
<button>Button</button>
<input type="button" value="Input">
</div>