tor-browser

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

box-sizing-content-box-001-ref.xht (1042B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3  <head>
      4   <title>CSS Reference: Box Sizing - Content-Box with specified width/height</title>
      5   <link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" />
      6   <style type="text/css"><![CDATA[
      7     .container {
      8       width: 300px;
      9       height: 110px;
     10       border: 2px solid black;
     11       position: absolute;
     12       left: 25px;
     13       top: 25px;
     14       background-color: red;
     15     }
     16 
     17     .box-sized {
     18       width: 150px;
     19       height: 110px;
     20       z-index: 1;
     21       float: left;
     22     }
     23 
     24     #one {
     25       background-color: green;
     26     }
     27 
     28     #two {
     29       background-color: blue;
     30     }
     31   ]]></style>
     32  </head>
     33  <body>
     34    The two divs should be side-by-side, not one on top of another. No red should be visible.
     35    <br />
     36    <div class="container">
     37      <div class="box-sized" id="one">LEFT HALF</div>
     38      <div class="box-sized" id="two">RIGHT HALF</div>
     39    </div>
     40  </body>
     41 </html>