tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

grid-fragmentation-013-ref.html (1067B)


      1 <!DOCTYPE HTML>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html lang="en-US" class="reftest-paged"><head>
      7  <meta charset="utf-8">
      8  <title>Reference: Fragmentation in print context of height:auto grid, item break-inside:avoid</title>
      9  <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1144096">
     10  <style type="text/css">
     11 @page { size:5in 3in; margin:0.5in; }
     12 html,body {
     13    color:black; background-color:white; font-size:16px; padding:0; margin:0;
     14 }
     15 
     16 .grid {
     17  display: grid;
     18  height: 1in;
     19  border: 0.1in solid;
     20 }
     21 .col {
     22  height: 0;
     23  width: 0.6in;
     24 }
     25 .col > div {
     26  height: 1in;
     27  position: relative;
     28  background: lime;
     29  border: 0.05in solid black;
     30 }
     31 </style>
     32 </head>
     33 <body>
     34 
     35 <div style="padding-top:1in; background:grey">
     36  <div class="grid">
     37    <div class="col"><div></div></div>
     38  </div>
     39 </div>
     40 
     41 <div style="padding-top:1in; background:grey;">
     42  <div class="grid">
     43    <div class="col"><div></div></div>
     44  </div>
     45 </div>
     46 
     47 </body>
     48 </html>