tor-browser

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

first-line-with-inline-block.html (389B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-text-line">
      3 <link rel="match" href="reference/first-line-with-inline-block-ref.html">
      4 <style>
      5 .fl:first-line {
      6  color: red;
      7 }
      8 .fl-atomic {
      9  display: inline-block;
     10 }
     11 .fl-atomic:first-line {
     12  color: lime;
     13 }
     14 </style>
     15 <div class="fl">
     16 FIRST <div class="fl-atomic">first</span><br>second</div> FIRST
     17 </div>