box-sizing-007-ref.html (730B)
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 div { 7 display: inline-block; 8 width: 100px; 9 height: 100px; 10 background: green; 11 margin: 10px; 12 } 13 14 body { 15 max-width: 700px; 16 } 17 </style> 18 <body> 19 <p>Test passes if there are 20 <strong>filled green squares</strong> and they are the <strong>same size</strong>.</p> 20 <div></div> 21 <div></div> 22 <div></div> 23 <div></div> 24 <div></div> 25 <div></div> 26 <div></div> 27 <div></div> 28 <div></div> 29 <div></div> 30 <div></div> 31 <div></div> 32 <div></div> 33 <div></div> 34 <div></div> 35 <div></div> 36 <div></div> 37 <div></div> 38 <div></div> 39 <div></div> 40 </body>