tor-browser

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

box-sizing-009-ref.html (535B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Basic User Interface Reference File</title>
      4 <link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
      5 <style>
      6 div {
      7 width: 300px;
      8 height: 100px;
      9 background: green;
     10 margin: 10px;
     11 display: inline-block;
     12 }
     13 body {
     14 max-width: 700px;
     15 }
     16 </style>
     17 <body>
     18  <p>Test passes if there are 6 <strong>filled green rectangles</strong> and they are the <strong>same size</strong>.</p>
     19  <div></div>
     20  <div></div>
     21  <div></div>
     22  <div></div>
     23  <div></div>
     24  <div></div>
     25 </body>