tor-browser

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

line-clamp-with-floats-007-ref.html (416B)


      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  margin: 4px;
     15  white-space: pre;
     16  background-color: skyblue;
     17 }
     18 </style>
     19 <div class="clamp">Line 1
     20 Line 2
     21 Line 3
     22 Line 4…<div class="float">Line A
     23 Line B
     24 Line C
     25 Line D
     26 Line E</div></div>