tor-browser

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

transform-origin-ref.html (669B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>CSS Transforms API Test: transform-origin</title>
      5    <link rel="author" title="Michael Downey" href="mailto:miked782000@yahoo.com">
      6    <style type="text/css">
      7        body {margin:0}
      8        .greenSquare {
      9            position: absolute;
     10            top: 0px;
     11            left: 0px;
     12            width: 100px;
     13            height: 100px;
     14            background: green;
     15        }
     16        #relativeContainer {
     17            position: relative;
     18        }
     19    </style>
     20 </head>
     21 <body>
     22 <p>The test passes if there is a green square and no red.</p>
     23 <div id="relativeContainer">
     24    <div class="greenSquare"></div>
     25 </div>
     26 </body>
     27 </html>