tor-browser

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

fieldset-painting-order.html (609B)


      1 <!doctype html>
      2 <title>fieldset painting order</title>
      3 <link rel=match href=fieldset-painting-order-ref.html>
      4 <style>
      5 fieldset, legend { margin: 0; padding: 0; }
      6 fieldset {
      7  border: 100px solid red;
      8  width: 0;
      9  min-width: 0;
     10  height: 0;
     11 }
     12 legend { width: 200px; height: 200px; margin-left: -100px; background: green; }
     13 legend > span { float: right; margin-top: 100px; width: 100px; height: 100px; background: red; }
     14 fieldset > div { margin-top: -100px; background: lime; width: 200px; height: 200px; }
     15 </style>
     16 <p>There should be no red.</p>
     17 <fieldset><legend><span></span></legend><div></div></fieldset>