Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/select-element-zero-height-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Select element with background color in flexbox with zero height</title>
<link rel="match" href="select-element-zero-height-002-ref.html">
<style>
.container {
display: flex;
flex-direction: column;
height: 0px;
border: 1px dotted black;
}
.with-background {
background: lime;
}
select {
/*
WebKit applies intrinsic (default) margins to control elements in some circumstances,
let's disable them to avoid mismatch errors caused by those margins.
*/
margin: 0;
}
</style>
<body>
<div class="container">
<select class="with-background"><option>Hi</option></select>
</div>
</body>