| <!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> |