tor-browser

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

1260031-1-ref.html (508B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4  <meta charset="UTF-8">
      5  <title>Bug 1260031 - Intrinsic width with float</title>
      6  <style>
      7    #left {
      8      display: inline-block;
      9      width: 50px;
     10      height: 50px;
     11      background: green;
     12    }
     13    #right {
     14      display: inline-block;
     15      width: 50px;
     16      height: 50px;
     17      background: blue;
     18    }
     19  </style>
     20 </head>
     21 <body>
     22  <div id="test">
     23    <div id="wrapper">
     24      <div id="left"></div><div id="right"></div>
     25    </div>
     26  </div>
     27 </body>
     28 </html>