tor-browser

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

position-area-inline-container-ref.html (916B)


      1 <!DOCTYPE html>
      2 <title>CSS Test Reference</title>
      3 <div style="position:relative">
      4  <!-- The Ahem 'XXXX' text: -->
      5  <div style="position:absolute; background-color:orange; left:200px; top:200px; width:400px; height:100px"></div>
      6  <!-- The #anchor -->
      7  <div style="position:absolute; background-color:cyan; left:300px; top:225px; width:200px; height:50px"></div>
      8  <!-- top / left -->
      9  <div style="position:absolute; background-color:blue; left:200px; top:200px; width:100px; height:25px"></div>
     10  <!-- top / right -->
     11  <div style="position:absolute; background-color:blue; left:500px; top:200px; width:100px; height:25px"></div>
     12  <!-- bottom / left -->
     13  <div style="position:absolute; background-color:blue; left:200px; top:275px; width:100px; height:25px"></div>
     14  <!-- bottom / right -->
     15  <div style="position:absolute; background-color:blue; left:500px; top:275px; width:100px; height:25px"></div>
     16 </div>