box-sizing-001-ref.html (531B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Basic User Interface Reference File</title> 4 <link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/"> 5 <style> 6 #cb { 7 position: absolute; 8 width: 100px; 9 height: 100px; 10 } 11 #test { 12 margin-right: 5px; 13 margin-top: 25px; 14 margin-left: 25px; 15 width: 70px; 16 height: 70px; 17 background:green; 18 } 19 </style> 20 <body> 21 <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p> 22 <div id="cb"> 23 <div id="test"></div> 24 </div> 25 </body>