Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-sizing/aspect-ratio/flex-aspect-ratio-033.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>aspect-ratio flex item</title>
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht" />
<meta name="assert" content="Item's final height is definite when the flex base size is definite because it derives from item's aspect ratio and specified width, not from layout">
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="display: flex; flex-direction: column;">
<div style="aspect-ratio: 1/1; background: red; width: 100px;">
<div style="height: 100%; background: green;"></div>
</div>
</div>