Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-break/flexbox/multi-line-row-flex-fragmentation-063-print.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="match" href="multi-line-row-flex-fragmentation-063-print-ref.html">
<style>
@page { size: 5in 3in; margin: 0.5in; }
body { margin: 0; }
.flexbox {
display: flex;
flex-wrap: wrap;
border: 0.25in solid black;
font-size: 0.25in;
row-gap: 0.2in;
}
.item {
contain: size;
box-sizing: border-box;
border: 4px solid purple;
height: 0.5in;
flex: 0 0 100%;
}
</style>
<!-- This div makes the flexbox not at the top of first page. -->
<div style="height: 0.25in; background: gray;"></div>
<div class="flexbox">
<div class="item">1</div>
<div class="item">2</div>
<div class="item">3</div>
<div class="item">4</div>
<div class="item">5</div>
<div class="item">6</div>
</div>
<div style="height: 0.25in; background: gray;"></div>
</html>