tor-browser

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

offset-path-ray-017-ref.html (457B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Motion Path test reference: ray() path with padding-box</title>
      4 
      5 <style>
      6  #outer {
      7    top: 100px;
      8    left: 100px;
      9    position: relative;
     10    width: 200px;
     11    height: 200px;
     12    padding: 50px;
     13    border: 50px solid black;
     14  }
     15  #box {
     16    background-color: green;
     17    transform: translate(100px, -50px);
     18    width: 100px;
     19    height: 100px;
     20  }
     21 </style>
     22 
     23 <div id="outer">
     24  <div id="box"></div>
     25 </div>