tor-browser

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

bg-image-div-002.html (399B)


      1 <!DOCTYPE html>
      2 <style>
      3  .outer {
      4    /* Invert color/background so that it has more chances to disagree with the default background-color. */
      5    color: Menu;
      6    background-color: MenuText;
      7  }
      8  .inner {
      9    height: 100px;
     10    width: 100px;
     11    padding: 10px;
     12    background-image: url("green.png");
     13    background-size: 0 0;
     14  }
     15 </style>
     16 <div class="outer">
     17  <div class="inner">X</div>
     18 </div>