tor-browser

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

backplate-bg-image-002-ref.html (626B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <link rel="stylesheet" type="text/css" href="ahem.css" />
      5  <title>Reference: Text runs that are separated by a block-level line will get separate backplates.</title>
      6  <style>
      7    body {
      8      font: 20px Ahem;
      9    }
     10    .fake-backplate {
     11      background-color: white;
     12      width: max-content;
     13    }
     14    .sample {
     15      background-image: url("blue.png");
     16      height: 500px;
     17    }
     18  </style>
     19 </head>
     20 <body>
     21 <span class="fake-backplate">ppppp ppppp</span><div class="sample"><span class="fake-backplate">ppppp ppppp</span></div><span class="fake-backplate">ppppp ppppp</span>
     22 </body>
     23 </html>