tor-browser

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

whitespace-001-ref.html (425B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Test Reference</title>
      4 <style>
      5 .outer {
      6  display: block;
      7  width: 500px;
      8  background: purple;
      9  border: 1px solid green;
     10 }
     11 .half {
     12  display: inline-block;
     13  width: 50%;
     14  background: blue;
     15 }
     16 .half + .half {
     17  background: yellow;
     18 }
     19 </style>
     20 <div class="outer">
     21  <div class="half">A</div>
     22  <!-- White space here should take up space -->
     23  <div class="half">B</div>
     24 </div>