tor-browser

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

css-scale-of-clip-path-ref.html (393B)


      1 <!doctype HTML>
      2 <style>
      3 .tile {
      4  width: 620px;
      5  height: 671px;
      6  position: absolute;
      7  clip-path: circle(50%);
      8  background-color: lightblue;
      9 }
     10 #container {
     11  transform: scale(0.25);
     12  position: relative;
     13  left: -200px;
     14  will-change: transform;
     15 }
     16 </style>
     17 <div id=container>
     18  <div class="tile" style="top: 520px;"></div>
     19  <div class="tile" style="top: 688px; left: 390px;"></div>
     20 </div>