tor-browser

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

calc-background-position-1-ref.html (537B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <title>CSS Reference: Test for calc() on background-position</title>
      5  <link rel="author" title="L. David Baron" href="https://bugzilla.mozilla.org/show_bug.cgi?id=594934">
      6 <style type="text/css">
      7 
      8 p {
      9    height: 50px; width: 200px;
     10    border: thin solid;
     11    background-image: url(support/blue-32x32.png);
     12    background-repeat: no-repeat;
     13 }
     14 
     15 #one { background-position: 134px -12px }
     16 #two { background-position: -18px -19px }
     17 
     18 </style>
     19 </head>
     20 <body>
     21 <p id="one"></p>
     22 <p id="two"></p>
     23 </body>
     24 </html>