tor-browser

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

multicol-contained-absolute.html (568B)


      1 <!DOCTYPE html>
      2 <title>CSS Multi-column Layout Test: multicol with contained absolute position</title>
      3 <link rel="help" href="https://www.w3.org/TR/css-multicol-1/">
      4 <link rel="match" href="multicol-contained-absolute-ref.html">
      5 <meta name="assert" content="Absolute position contained in multicol should have correct containing block.">
      6 <div style="columns: 2">
      7  <div style="position: relative; height: 200px">
      8    <div style="overflow: hidden">
      9      <div style="position: absolute; width: 100%; height: 200px; background: green"></div>
     10    </div>
     11  </div>
     12 </div>