tor-browser

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

static-inside-inline-block-ref.html (677B)


      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 
      6 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      7 <div style="display: inline-block; width: 100px; height: 100px;"></div>
      8 <div style="display: inline-block; width: 100px; height: 100px; background: red;">
      9    <div style="width: 100px; height: 100px; background: green;"></div>
     10 </div>
     11 <div style="display: inline-block; width: 100px; height: 100px;"></div>