blob: 52e45c4f65f01e5eb98a98590788a0af7bcf7230 [file] [log] [blame]
<!DOCTYPE html>
<style>
body {
margin: 0px;
}
#current {
columns: 6;
column-gap: 2px;
column-rule-style: solid;
column-rule-width: 2px;
column-fill: auto;
height: 20px;
column-rule-color: hotpink;
width: 72px;
height: 20px;
}
.items {
background-color: lightgreen;
height: 20px
}
</style>
<body>
<div id="current">
<div class="items"></div>
<div class="items"></div>
<div class="items"></div>
<div class="items"></div>
<div class="items"></div>
<div class="items"></div>
</div>
</body>
</html>