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-auto-repeat-flex-direction-reverse.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>
CSS Gap Decorations: a column-rule-color list containing a repeat(auto,
...) segment is expanded in placement order, then assigned to gaps in
placement order, when flex-direction is row-reverse.
</title>
<link rel="match" href="flex-gap-decorations-auto-repeat-flex-direction-reverse-ref.html">
<link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com">
<style>
body {
margin: 0px;
}
.flex {
display: flex;
flex-direction: row-reverse;
gap: 10px;
width: 350px;
}
.flex > * {
background: lightgray;
width: 50px;
height: 50px;
}
.flex {
column-rule-color: red, repeat(auto, green, blue, orange), purple;
column-rule-style: solid;
column-rule-width: 10px;
}
</style>
<div class="flex">
<div></div><div></div><div></div><div></div><div></div><div></div>
</div>