tor-browser

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

div-orthogonal-left-and-non-auto-margin.tentative.html (563B)


      1 <!DOCTYPE HTML>
      2 <title> Ensure left doesn't take effect if margin isn't auto </title>
      3 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3973">
      4 <link rel="match" href="div-orthogonal-left-and-non-auto-margin-ref.html">
      5 <style>
      6  #outer {
      7    inset: 0;
      8    writing-mode: vertical-rl;
      9    background-color: black;
     10    margin: auto;
     11    left: 10px;
     12    margin-right: 10px;
     13    position: absolute;
     14    block-size: max-content;
     15    inline-size: 100px;
     16    border: 5px solid red;
     17  }
     18 </style>
     19 <div id="outer"><div style="block-size: 200px;"></div></div>