tor-browser

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

multicol-scroll-content.html (732B)


      1 <!DOCTYPE html>
      2 <title>CSS Test: Multi-column element with scrolled content</title>
      3 <link rel="help" href="http://www.w3.org/TR/css3-multicol/#columns"/>
      4 <link rel="match" href="multicol-scroll-content-ref.html"/>
      5 <div style="columns: 2; width: 200px; height: 100px; column-gap: 0">
      6  <div style="overflow: scroll; height: 150px; background: red">
      7    <div style="width: 400px; height: 400px; background: green; position: relative"></div>
      8  </div>
      9 </div>
     10 <div style="columns: 2; width: 200px; height: 100px; column-gap: 0">
     11  <div style="height: 100px"></div>
     12  <div style="overflow: scroll; height: 150px; background: red">
     13    <div style="width: 400px; height: 400px; background: green; position: relative"></div>
     14  </div>
     15 </div>