tor-browser

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

line-clamp-with-floats-008-ref.html (393B)


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