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/balance/balance-flex-grow.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="match" href="balance-flex-grow-ref.html">
<meta name="assert" content="Tests a basic balance flexbox with flex-grow specified.">
<style>
#flex {
display: flex;
flex-wrap: balance;
width: 100px;
height: 100px;
gap: 10px;
}
#flex > div {
background: green;
flex-grow: 1;
}
</style>
<div id="flex">
<div style="width: 30px;"></div>
<div style="width: 20px;"></div>
<div style="width: 20px;"></div>
<div style="width: 30px;"></div>
</div>