Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-gaps/grid/grid-gap-decorations-044-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>
CSS Gap Decorations: Row gutter with no row gaps and column gaps with no column gutter should not crash.
</title>
<link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com">
<style>
.grid-container {
display: grid;
row-gap: 40px;
grid-template: 1fr/ 1fr 1fr;
row-rule: solid red;
}
</style>
<div class="grid-container"></div>