tor-browser

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

position-relative-table-tfoot-top-ref.html (504B)


      1 <!DOCTYPE html>
      2 <style>
      3 table {
      4  border-collapse:collapse;
      5 }
      6 
      7 td {
      8  padding: 0;
      9 }
     10 
     11 td > div {
     12  height: 50px;
     13  width: 50px;
     14 }
     15 
     16 .group {
     17  display: inline-block;
     18  position: relative;
     19  width: 150px;
     20  height: 200px;
     21 }
     22 
     23 .indicator {
     24  position: absolute;
     25  background-color: green;
     26  left: 0;
     27  top: 150px;
     28  height: 50px;
     29  width: 50px;
     30 }
     31 
     32 </style>
     33 
     34 <div class="group">
     35  <div>
     36    <div class="indicator"></div>
     37  </div>
     38 </div>
     39 
     40 <div>You should see a green box above. No red should be visible.</div>