row-track-sizing-003.html (789B)
1 <!DOCTYPE html> 2 <html> 3 <link rel="help" href="https://drafts.csswg.org/css-grid-3"> 4 <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> 5 <link rel="match" href="row-track-sizing-003-ref.html"> 6 <style> 7 .grid-lanes { 8 display: grid-lanes; 9 grid-lanes-direction: row; 10 grid-template-rows: 1fr 5fr 3fr 1fr; 11 width: 100px; 12 height: 100px; 13 } 14 </style> 15 <body> 16 <p>Test that grid-lanes tracks are correctly sized, and flexible tracks are expanded.</p> 17 <div class="grid-lanes"> 18 <div style="background-color: orange; width: 100px;"></div> 19 <div style="background-color: yellow; width: 100px;"></div> 20 <div style="background-color: blue; width: 100px;"></div> 21 <div style="background-color: purple; width: 100px;"></div> 22 </div> 23 </body> 24 </html>