Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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="help" href="https://drafts.csswg.org/css-gaps-1/">
<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>