grid-content-distribution-005.html (1371B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Grid Layout Test: Content Distribution default value</title> 4 <link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com"> 5 <link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-align"> 6 <link rel="help" href="https://drafts.csswg.org/css-align-3/#content-distribution"> 7 <link rel="help" href="https://drafts.csswg.org/css-align-3/#valdef-align-content-stretch"> 8 <link rel="match" href="../../reference/ref-filled-green-200px-square.html"> 9 <meta name="assert" content="Content Distribution properties have 'stretch' as default value and render correcly."> 10 <style> 11 .block { 12 position: absolute; 13 z-index: -1; 14 background: green; 15 width: 200px; 16 height: 200px; 17 } 18 .block > div { 19 position: absolute; 20 background: red; 21 width: 100px; 22 height: 100px; 23 } 24 .grid { 25 z-index: 1; 26 display: grid; 27 width: 200px; 28 height: 200px; 29 grid-template-columns: auto auto; 30 grid-template-rows: auto auto; 31 } 32 .grid > div { background: green; } 33 </style> 34 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 35 <div class="block"> 36 <div style="top: 0px; left: 0px;"></div> 37 <div style="top: 100px; left: 100px;"></div> 38 </div> 39 <div class="grid"> 40 <div style="grid-row: 1; grid-column: 1;"></div> 41 <div style="grid-row: 2; grid-column: 2;"></div> 42 </div>