tor-browser

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

boxshadow-inset-large-offset.html (358B)


      1 <html>
      2 <head>
      3 <style>
      4 div.test {
      5  width: 500px;
      6  height: 500px;
      7  box-shadow: inset 70px 70px 50px 0px black;
      8  position: absolute;
      9 }
     10 
     11 div.cover {
     12  width: 500px;
     13  height: 500px;
     14  background-color: black;
     15  position: absolute;
     16  margin-top: 0px;
     17  margin-left: 30px;
     18 }
     19 </style>
     20 <body>
     21 <div class="test">
     22 </div>
     23 <div class="cover">
     24 </div>
     25 </body>
     26 </html>