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-043-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>
CSS Gap Decorations: Column gutter with no column gaps and row gaps with no row gutter should not crash.
</title>
<link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com">
<style>
.grid-container {
display: grid;
column-gap: 40px;
grid-template: 1fr 1fr / 1fr;
column-rule: solid blue;
}
</style>
<div class="grid-container"></div>