tor-browser

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

static-fixed-inside-abspos.html (775B)


      1 <!DOCTYPE html>
      2 <title>Static position fixed inside static position absolute</title>
      3 <link rel="author" title="Martin Robinson" href="mrobinson@igalia.com">
      4 <link rel="help" href="https://www.w3.org/TR/CSS22/visudet.html#abs-non-replaced-width" title="10.3.7 Absolutely positioned, non-replaced elements">
      5 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      6 
      7 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      8 
      9 <div style="display: absolute; width: 100px; height: 100px; background: green;">
     10    <div style="position: absolute; width: 50px; height: 50px; margin-left: 50px; margin-top: 50px; background: red;">
     11        <div style="position: fixed; width: 50px; height: 50px; background: green;"></div>
     12    </div>
     13 </div>