tor-browser

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

webkit-line-clamp-044-ref.html (439B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Test Reference</title>
      4 <style>
      5  .clamp {
      6    display: flow-root;
      7    background-color: yellow;
      8    padding: 0.5em;
      9    font-size: 16px / 32px serif;
     10    white-space: pre;
     11  }
     12  .float {
     13    float: left;
     14    background-color: orange;
     15    padding: 0.5em;
     16    height: 100px;
     17    width: 100px;
     18  }
     19 </style>
     20 
     21 <div class="clamp">Line 1
     22 Line 2
     23 Line 3
     24 Line 4
     25 <div class="float"></div>Line 5</div>