tor-browser

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

first-line-with-inline-block-ref.html (285B)


      1 <!DOCTYPE html>
      2 <style>
      3 .outer-f {
      4  color: red;
      5 }
      6 .fl-atomic {
      7  display: inline-block;
      8 }
      9 .inner-f {
     10  color: lime;
     11 }
     12 </style>
     13 <div>
     14 <span class="outer-f">FIRST</span> <div class="fl-atomic"><span class="inner-f">first</span><br>second</div> <span class="outer-f">FIRST</span>
     15 </div>