tor-browser

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

boxshadow-multiple.html (249B)


      1 <!DOCTYPE HTML>
      2 <style>
      3 body {
      4  background-color: green;
      5 }
      6 
      7 #thediv {
      8  width: 300px;
      9  height: 100px;
     10  position: absolute;
     11  top: 20px;
     12  left: 20px;
     13  box-shadow: 3px 3px red, 6px 6px blue, 9px 9px black;
     14 }
     15 </style>
     16 
     17 <div id="thediv">Foo</div>