tor-browser

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

box-shadow-body.html (623B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>CSS box-shadow Test: &lt;body&gt; shadow should look the same regardless of background color</title>
      5    <link rel="author" title="fmalita" href="mailto:fmalita@chromium.org">
      6    <link rel="help" href="https://www.w3.org/TR/css-backgrounds-3/#the-box-shadow">
      7    <link rel="match" href="reference/box-shadow-body-ref.html">
      8    <style type="text/css">
      9    body {
     10        position: relative;
     11        box-shadow: 0 0 0 4px red;
     12        height: 300px;
     13        width: 600px;
     14        margin: 20px auto;
     15        background-color: white;
     16    }
     17    </style>
     18 </head>
     19 <body></body>
     20 </html>