tor-browser

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

border-radius-dynamic-from-no-radius-ref.html (448B)


      1 <!doctype html>
      2 <title>CSS Test Reference</title>
      3 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      4 <link rel="author" title="Mozilla" href="https://mozilla.org">
      5 <style>
      6  #outer {
      7    width: 100px;
      8    height: 100px;
      9  }
     10  #inner {
     11    width: 100%;
     12    height: 100%;
     13    background: green;
     14    border-radius: 99px;
     15  }
     16 </style>
     17 <p>Should be a green circle below</p>
     18 <div id="outer">
     19  <div id="inner"></div>
     20 </div>