tor-browser

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

css-scale-of-clip-path.html (603B)


      1 <!doctype HTML>
      2 <link rel="author" title="Chris Harrelson">
      3 <link rel="help" href="https://drafts.csswg.org/css-transforms-2/">
      4 <link rel="match" href="css-scale-of-clip-path-ref.html">
      5 <meta name=fuzzy content="maxDifference=0-40;totalPixels=0-3000">
      6 <style>
      7 .tile {
      8  width: 620px;
      9  height: 671px;
     10  position: absolute;
     11  clip-path: circle(50%);
     12  background-color: lightblue;
     13 }
     14 #container {
     15  transform: scale(0.25);
     16  position: relative;
     17  left: -200px;
     18 }
     19 </style>
     20 <div id=container>
     21  <div class="tile" style="top: 520px;"></div>
     22  <div class="tile" style="top: 688px; left: 390px;"></div>
     23 </div>