grid-item-auto-margins-001.html (584B)
1 <!DOCTYPE html> 2 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht"> 3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1213878"> 4 <meta name="assert" content="Auto margin alignment should be safe."> 5 <style> 6 #grid { 7 display: grid; 8 width: 100px; 9 height: 100px; 10 background: red; 11 grid-template: 0px / 0px; 12 } 13 14 #grid > div { 15 width: 100px; 16 height: 100px; 17 background: green; 18 } 19 </style> 20 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 21 <div id="grid"> 22 <div style="margin: auto;"></div> 23 </div>