tor-browser

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

line-clamp-with-floats-001-ref.html (371B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference</title>
      4 <style>
      5 .clamp {
      6  font: 16px / 32px serif;
      7  padding: 0 4px;
      8  white-space: pre;
      9  background-color: yellow;
     10 }
     11 .float {
     12  float: left;
     13  width: 50px;
     14  height: 50px;
     15  margin: 4px;
     16  background-color: skyblue;
     17 }
     18 </style>
     19 <div class="clamp"><div class="float"></div>Line 1
     20 Line 2
     21 Line 3
     22 Line 4…</div>