tor-browser

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

multicol-margin-child-001-ref.xht (922B)


      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 Reftest Reference</title>
      5   <link rel="author" title="Opera Software ASA" href="http://www.opera.com/" />
      6   <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2013-08-10 -->
      7   <style type="text/css"><![CDATA[
      8   body > div
      9   {
     10   background-color: blue;
     11   border: gray solid 1em;
     12   font-size: 1.25em;
     13   height: 8em;
     14   position: relative;
     15   width: 10em;
     16   }
     17 
     18   div > div
     19   {
     20   background-color: yellow;
     21   height: 1em;
     22   left: 0;
     23   position: absolute;
     24   top: 3em;
     25   width: 5em;
     26   }
     27 
     28   #second-stripe {top: 5em;}
     29 
     30   #third-stripe {top: 7em;}
     31   ]]></style>
     32 
     33  </head>
     34 
     35  <body>
     36 
     37   <div>
     38 	<div></div>
     39 	<div id="second-stripe"></div>
     40 	<div id="third-stripe"></div>
     41   </div>
     42 
     43  </body>
     44 </html>