tor-browser

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

single-line-column-flex-fragmentation-023.html (815B)


      1 <!DOCTYPE html>
      2 <title>
      3  Single-line column flex fragmentation with break-inside: avoid and border-bottom.
      4 </title>
      5 <link rel="help" href="https://www.w3.org/TR/css-break-3/#breaking-rules">
      6 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      7 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      8 <div style="width:100px; height:100px; background:red;">
      9  <div style="columns:2; column-fill:auto; column-gap:0; height:160px;">
     10    <div style="height:40px; background:green;"></div>
     11    <div style="display:flex; flex-direction:column; width:50px; border-bottom:40px solid green;">
     12      <div style="break-inside:avoid; height:60px; background:green;"></div>
     13      <div style="break-inside:avoid; height:60px; background:green;"></div>
     14    </div>
     15  </div>
     16 </div>