tor-browser

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

static-inside-inline-block.html (759B)


      1 <!DOCTYPE html>
      2 <title>Static position inside inline-block</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="static-inside-inline-block-ref.html">
      6 
      7 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      8 <div style="display: inline-block; width: 100px; height: 100px;"></div>
      9 <div style="display: inline-block; width: 100px; height: 100px; background: red;">
     10    <div style="position: absolute; width: 100px; height: 100px; background: green;"></div>
     11 </div>
     12 <div style="display: inline-block; width: 100px; height: 100px;"></div>