<!DOCTYPE html> | |
<title>flexbox | paged overflow</title> | |
<link rel="author" href="http://opera.com" title="Opera Software"> | |
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#pagination"> | |
<meta name="flags" content="interact paged"> | |
<style> | |
* {widows: 1; orphans: 1; margin: 0;} | |
html { | |
overflow: -o-paged-x; | |
} | |
h4 { | |
position: fixed; | |
} | |
div { | |
display: flex; | |
break-before: page; | |
background: red; | |
} | |
</style> | |
<h4>There should be NO RED onload.</h4> | |
<div>FAIL</div> |