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/flexbox-definite-sizes-002.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>CSS Test: nested flex containers with height established by 'min-height'</title>
<link rel="match" href="flexbox-definite-sizes-001-ref.html">
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<style>
div {
display: flex;
}
.item {
width: 100px;
background: red;
align-items: center;
min-height: 100px;
}
.item span {
min-height: 100%;
width: 100%;
background: green;
}
</style>
<p>Test passes if you see a green 100px x 100px square, and no red</p>
<div>
<div class="item">
<span></span>
</div>
</div>