tor-browser

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

1419820-1.html (406B)


      1 <!doctype html>
      2 <html>
      3 <body>
      4 <style>
      5 body
      6 {
      7  transform-style: preserve-3d;
      8 }
      9 .absolute
     10 {
     11  position: absolute;
     12  width: 100px;
     13  height: 100px;
     14  transform: translateX(0%);
     15  background-color: red;
     16 }
     17 .relative
     18 {
     19  position: relative;
     20  background-color: green;
     21  width: 100px;
     22  height: 100px;
     23 }
     24 </style>
     25  <div>
     26    <div class="absolute"></div>
     27    <div class="relative"></div>
     28  </div>
     29 </body>
     30 </html>