Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<link rel="match" href="balance-start-bias-002-ref.html">
<meta name="assert" content="If multiple possible sequence assignments have equal minimum error, select the sequence that assigns the most items to the first line; if multiple sequences tie by that metric, select the sequence among them that assigns the most items to the second line; etc.">
<style>
body {
width: 120px;
border: solid 3px;
}
#flex {
display: flex;
flex-wrap: balance wrap-reverse;
padding: 10px;
gap: 10px;
}
#flex > div {
width: 25px;
height: 25px;
background: green;
}
</style>
<div id="flex">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div style="width: 100px;"></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>