tor-browser

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

body-fills-html-quirk-float.html (391B)


      1 <!DOCTYPE quirks-mode>
      2 <link rel="help" href="https://quirks.spec.whatwg.org/#the-body-element-fills-the-html-element-quirk">
      3 <link rel="match" href="body-fills-html-quirk-ref.html">
      4 <style>
      5 body {
      6  border: solid;
      7  margin: 10px 11px 12px 14px;
      8  float: left;
      9 }
     10 span {
     11  display: inline-block;
     12  width: 100px;
     13  height: 100px;
     14  background: green;
     15 }
     16 </style>
     17 <body>
     18  <span></span>
     19 </body>