tor-browser

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

clip-text-flex-ref.html (279B)


      1 <!DOCTYPE html>
      2 <link rel="stylesheet" href="/fonts/ahem.css">
      3 <style>
      4 .clip {
      5  font-size: 80px;
      6  color: green;
      7 }
      8 .flex {
      9    display: flex;
     10 }
     11 .inline-flex {
     12    display: inline-flex;
     13 }
     14 </style>
     15 <div class="clip flex">flex</div>
     16 <div class="clip inline-flex">inline-flex</div>