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/flex-height-min-content.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Flexbox Test: height: min-content is sized correctly</title>
<link rel="match" href="../reference/ref-filled-green-100px-square.xht" />
<style>
#flex {
display: flex;
flex-direction: column;
width: 100px;
}
#item {
min-height: 30px;
height: min-content;
background: green;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="flex">
<div id="item">
<div style="height: 100px; width: 100px;"></div>
</div>
</div>