Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com">
<style>
body {
margin: 0px;
}
.flex {
display: flex;
flex-direction: row-reverse;
flex-wrap: wrap-reverse;
gap: 10px;
width: 250px;
height: 230px;
}
.flex > * {
background: lightgray;
height: 50px;
}
.col-gap {
position: absolute;
width: 6px;
height: 50px;
}
</style>
<div class="flex">
<div style="width: 60px;"></div>
<div style="width: 60px;"></div>
<div style="width: 60px;"></div>
<div style="width: 110px;"></div>
<div style="width: 100px;"></div>
<div style="width: 60px;"></div>
<div style="width: 60px;"></div>
<div style="width: 60px;"></div>
<div style="width: 110px;"></div>
<div style="width: 100px;"></div>
</div>
<div class="col-gap" style="left: 132px; top: 0px; background: purple;"> </div>
<div class="col-gap" style="left: 112px; top: 60px; background: blue;"> </div>
<div class="col-gap" style="left: 182px; top: 60px; background: green;"> </div>
<div class="col-gap" style="left: 132px; top: 120px; background: gold;"> </div>
<div class="col-gap" style="left: 112px; top: 180px; background: orange;"> </div>
<div class="col-gap" style="left: 182px; top: 180px; background: red;"> </div>