tor-browser

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

first-line-and-inline-block.html (211B)


      1 <!DOCTYPE html>
      2 <style>
      3 div, span {
      4  content-visibility: auto;
      5  contain-intrinsic-width: auto 100vw;
      6 }
      7 div::first-line {
      8  color: blue;
      9 }
     10 </style>
     11 <div>
     12  <span style="display: inline-block">foo</span>
     13 </div>