tor-browser

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

style.css (331B)


      1 #parent {
      2  position: relative;
      3  width: 400px;
      4  height: 400px;
      5  background: red;
      6  border: 0 solid black;
      7 }
      8 #child {
      9  position: absolute;
     10  left: 300px;
     11  top: 200px;
     12  right: 20px;
     13  bottom: 20px;
     14  background: blue;
     15  border: 0 solid black;
     16 }
     17 .floatLeft {
     18  width: 50px;
     19  height: 10px;
     20  background: green;
     21  float: left;
     22 }