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-lanes/column-gap-decorations-rule-visibility-items-all-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Gap Decorations: rule-visibility-items all with occupied first and third column grid-lanes</title>
<link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com">
<link rel="match" href="column-gap-decorations-rule-visibility-items-all-001-ref.html">
<style>
body { margin: 0; }
.lanes {
display: grid-lanes;
grid-template-columns: repeat(5, 60px);
gap: 20px;
width: max-content;
background: #cdd5e0;
column-rule: 4px solid blue;
column-rule-break: none;
column-rule-visibility-items: all;
}
.lanes > div {
height: 60px;
background: #5b8def;
}
.first { grid-column: 1; }
.third { grid-column: 3; }
</style>
<div class="lanes">
<div class="first"></div>
<div class="third"></div>
</div>