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/flex/flex-gap-decorations-068.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>
CSS Gap Decorations: flex column-rule-color paints the trailing fixed
values when the auto-repeater resolves to zero slots.
</title>
<link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com">
<link rel="match" href="flex-gap-decorations-068-ref.html">
<style>
body {
margin: 0px;
}
.flex-container {
display: flex;
gap: 20px;
width: 340px;
height: 100px;
column-rule-color: repeat(auto, red), blue, green;
column-rule-style: solid;
column-rule-width: 10px;
}
.flex-item {
background: gray;
opacity: 0.5;
width: 100px;
}
</style>
<div class="flex-container">
<div class="flex-item"></div>
<div class="flex-item"></div>
<div class="flex-item"></div>
</div>