grid-gap-decorations-044-crash.html (467B)
1 <!DOCTYPE html> 2 <title> 3 CSS Gap Decorations: Row gutter with no row gaps and column gaps with no column gutter should not crash. 4 </title> 5 <link rel="help" href="https://drafts.csswg.org/css-gaps-1/"> 6 <link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com"> 7 <style> 8 .grid-container { 9 display: grid; 10 row-gap: 40px; 11 12 grid-template: 1fr/ 1fr 1fr; 13 row-rule: solid red; 14 } 15 </style> 16 17 <div class="grid-container"></div>