tor-browser

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

line-clamp-auto-016-ref.html (406B)


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