HTML/CSS: Data column organized as top-down-right structure

PHOTO EMBED

Mon Aug 29 2022 15:43:36 GMT+0000 (Coordinated Universal Time)

Saved by @marcopinero #css

ul {
    column-count: 2;
    column-gap: 0;
}

li {
    display: inline;
}

/*

<div style="height:100%;overflow-y:auto;width:600px">
<ul>
    <li>Element 1<br></li>
    <li>Element 2<br></li>
    <li>Element 3<br></li>
    <li>Element 4<br></li>
    :
    <li>Element n<br></li>
</ul>
*/
content_copyCOPY

CSS for displaying array of data order from top to bottom and then to right column.