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-aspect-ratio-cross-size-002.html - WPT Dashboard Interop Dashboard
<title>Nested flex containers with aspect-ratio do not inflate container height through content min-size feedback</title>
<link rel="match" href="flex-aspect-ratio-cross-size-002-ref.html">
<style>
.container {
width: 200px;
background: green;
}
.outer {
display: flex;
aspect-ratio: 4;
}
.inner {
display: flex;
aspect-ratio: 1;
}
.box {
height: 100%;
aspect-ratio: 2;
}
</style>
<p>Test passes if the green strip below is 200x50 and not taller.</p>
<div class="container">
<div class="outer">
<div class="inner">
<div>
<div class="box"></div>
</div>
</div>
</div>
</div>