tor-browser

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

abspos-in-opacity-001.html (556B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://www.w3.org/TR/css-break-3/">
      4 <link rel="match" href="abspos-in-opacity-001-ref.html">
      5 <p>There should be a purple square below.</p>
      6 <div style="columns:2; column-gap:0; column-fill:auto; width:100px; height:100px; background:blue;">
      7  <div style="position:relative;">
      8    <div style="opacity:0.5; height:200px;">
      9      <div style="position:absolute; width:50px; height:200px; background:red;"></div>
     10    </div>
     11  </div>
     12 </div>