grid-layout-z-order-ref.html (808B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Grid Layout Reference</title> 5 <link rel="author" title="Leo Deng" href="mailto:myst.dg@gmail.com"> 6 <style> 7 body { 8 margin: 0; 9 padding: 0; 10 border: 0 none; 11 } 12 #caseTitle { 13 margin: 10px; 14 height: 40px; 15 } 16 #grid { 17 margin: 0; 18 width: 150px; 19 color:white; 20 } 21 .a { 22 background: blue; 23 width: 100px; 24 float:left 25 } 26 .b { 27 background: yellow; 28 width: 50px; 29 float:left; 30 } 31 </style> 32 </head> 33 <body> 34 <p id="caseTitle">The test passes if it has the same visual effect as reference.</p> 35 <div id="grid"> 36 <div class="a">up</div> 37 <div class="b"> </div> 38 </div> 39 </body> 40 </html>