tor-browser

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

collapsing-border-model-001-ref.html (391B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference</title>
      4 <style>
      5    div {
      6        height: 120px;
      7        width: 220px;
      8    }
      9    .orange {
     10        background: orange;
     11    }
     12    .blue {
     13        background: blue;
     14    }
     15 </style>
     16 <body>
     17    <p>Test passes if the orange and blue boxes below are the same width.</p>
     18    <div class="orange"></div>
     19    <div class="blue"></div>
     20 </body>