tor-browser

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

offset-distance-ref.html (373B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Motion Path: offset-distance</title>
      5    <style>
      6      #target {
      7        position: absolute;
      8        width: 100px;
      9        height: 40px;
     10        background-color: lime;
     11        transform-origin: 0% 0%;
     12        transform: translateX(120px);
     13      }
     14    </style>
     15  </head>
     16  <body>
     17    <div id="target"></div>
     18  </body>
     19 </html>