overflowing-block-print.html (568B)
1 <!DOCTYPE html> 2 <html> 3 <title> 4 Overflowing content does not affect whether a fixed-height box fits on a page, 5 but does get printed on the next page. 6 </title> 7 <meta name="flags" content="may"> 8 <link rel="match" href="overflowing-block-print-ref.html"> 9 <link rel="help" href="https://www.w3.org/TR/css-break-3/#parallel-flows"> 10 <style> 11 * { 12 box-sizing: border-box; 13 margin: 0; 14 padding: 0; 15 height: 100%; 16 } 17 body { 18 border: solid orange 10px; 19 padding: 10px; 20 } 21 div { 22 border: solid gray 10px; 23 height: 300%; 24 } 25 </style> 26 <div></div>