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-zero-size.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="An overflowing item should not have any zero sized items on the same line.">
<style>
#flex {
display: flex;
flex-wrap: balance;
width: 100px;
background: red;
}
#flex > div {
height: 50px;
background: green;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="flex">
<div style="width: 150px;"></div>
<div style="width: 0px; flex-grow: 1;"></div>
</div>