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-grow-009.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<style>
.container {
background-color: red;
display: flex;
height: 100px;
width: 100px;
}
.infinite-grow {
flex: calc(infinity) 0 0px;
background: green;
}
.normal-grow {
flex: 1 0 0px;
background: red;
}
</style>
<body>
<p>Test passes if there is a filled green square.</p>
<div class="container">
<div class="infinite-grow"></div>
<div class="normal-grow"></div>
</div>
</body>