Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<title>
Multi-line row flex fragmentation: Negative margins.
</title>
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
<style>
#flex {
display: flex;
flex-wrap: wrap;
}
#flex > div {
margin-top: -100px;
height: 100px;
width: 20px;
break-before: column;
background: green;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="height: 100px; width: 100px; background: red; position: absolute">
<div style="margin-top: 100px; width: 100px; height: 100px; columns: 5; column-gap: 0; column-fill: auto;">
<div id="flex">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>