tor-browser

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

background-image-large-with-auto-ref.html (724B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>CSS Background Test Reference</title>
      5  <link rel="author" title="schenney" href="mailto:schenney@chromium.org">
      6  <style>
      7    .wide-div {
      8      background-image: url(../support/green-1000x10.png);
      9      background-repeat: no-repeat;
     10      background-size: 10000px 100px;
     11      width: 1000px;
     12      height: 100px;
     13      border: 1px solid black;
     14    }
     15 
     16    .high-div {
     17      background-image: url(../support/green-10x1000.png);
     18      background-repeat: no-repeat;
     19      background-size: 100px 10000px;
     20      width: 100px;
     21      height: 1000px;
     22      border: 1px solid black;
     23    }
     24  </style>
     25 </head>
     26 
     27 <body>
     28  <div class='wide-div'></div>
     29  <div class='high-div'></div>
     30 </body>
     31 </html>