tor-browser

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

single-line-column-flex-fragmentation-068-print-ref.html (508B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      4 <link rel="author" title="Mozilla" href="https://www.mozilla.org/">
      5 
      6 <style>
      7 @page { size: 5in 3in; margin: 0.5in; }
      8 body {
      9  margin: 0;
     10  font-size: 0.25in;
     11 }
     12 .flexbox {
     13  display: block;
     14  border: 0.25in solid black;
     15 }
     16 </style>
     17 
     18 <div>Before Flexbox</div>
     19 <div class="flexbox">
     20  <div>1</div>
     21  <div>2</div>
     22  <div style="break-before: page">3</div>
     23  <div>4</div>
     24 </div>
     25 <div>After Flexbox</div>