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/single-line-column-flex-fragmentation-069c-print.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test that in a column flex container, the break-after values on flex items are honored</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="match" href="single-line-column-flex-fragmentation-069-print-ref.html">
<style>
@page { size: 5in 3in; margin: 0.5in; }
body {
margin: 0;
font-size: 0.25in;
}
.flexbox {
display: flex;
flex-direction: column;
border: 0.25in solid black;
}
.flexbox > div {
border: 4px solid purple;
}
.flexbox > .nested {
border: 4px solid gold;
}
</style>
<div>Before Flexbox</div>
<div class="flexbox">
<div class="flexbox nested" style="break-after: page">
<div>1</div>
<div>2</div>
</div>
<div class="flexbox nested">
<div>3</div>
<div>4</div>
</div>
</div>
<div>After Flexbox</div>