tor-browser

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

overflow-clip-margin-border-radius-ref.html (420B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference: overflow-clip-margin with border-radius</title>
      4 <link rel="author" title="Oriol Brufau" href="obrufau@igalia.com">
      5 <style>
      6 #outer {
      7  width: 50px;
      8  height: 50px;
      9  border-radius: 25px;
     10  box-shadow: black 0 0 0 100px;
     11  margin: 125px;
     12 }
     13 #inner {
     14  width: 50px;
     15  height: 50px;
     16  background: black;
     17 }
     18 </style>
     19 <div id="outer">
     20  <div id="inner"></div>
     21 </div>