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-005.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="match" href="balance-005-ref.html">
<meta name="assert" content="Just running a bisect algorithm alone won't balance this test">
<style>
body {
width: 120px;
border: solid 3px;
}
#flex {
display: flex;
flex-wrap: balance;
padding: 10px;
gap: 10px;
}
#flex > div {
width: 20px;
height: 25px;
background: green;
}
</style>
<div id="flex">
<div></div>
<div></div>
<div></div>
<div></div>
<div style="width: 100px"></div>
<div></div>
<div></div>
<div></div>
<div style="width: 10px"></div>
<div style="width: 70px"></div>
</div>