Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
<!DOCTYPE html>
<title>CSS Gap Decorations: rule-visibility-items all paints rules in empty row grid lanes</title>
<link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com">
<link rel="match" href="row-gap-decorations-rule-visibility-items-empty-all-ref.html">
<style>
body { margin: 0; }
.lanes {
display: grid-lanes;
grid-template-rows: repeat(3, 60px);
grid-lanes-direction: row;
gap: 20px;
background: #cdd5e0;
width: 120px;
height: 220px;
column-rule: 4px solid blue;
row-rule: 4px solid gold;
rule-break: none;
rule-visibility-items: all;
}
</style>
<div class="lanes"></div>