bfc-004.html (818B)
1 <!DOCTYPE html> 2 <html class="reftest-paged"> 3 <head> 4 <title>CSS Test: display:flow-root block fragmentation</title> 5 <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1572573"> 6 <meta name="flags" content="paged"> 7 <style> 8 @page { size:5in 3in; margin:0.5in; } 9 html,body { 10 color:black; background-color:white; font:1px/1 monospace; padding:0; margin:0; 11 } 12 .before, .after { 13 height: 0.5in; 14 content: "x"; 15 background: black; 16 } 17 </style> 18 </head> 19 <body> 20 <div class="before"></div> 21 <div style="display:flow-root"> 22 <div style="overflow:hidden; position:relative; min-height:1in"> 23 <div style="position:absolute"> 24 <div style="height:3in; width:1in; background:black"></div> 25 </div> 26 </div> 27 </div> 28 <div class="after"></div> 29 </body> 30 </html>