G
G
godsplane2021-10-29 00:45:10
css
godsplane, 2021-10-29 00:45:10

How to make the number of columns depending on the number of elements in the container?

617b19ad99132670189917.png

I want to do something like this.
I understand that it is possible through grids, but I do not know how.
It is important that the elements begin to fill in the first column, and when they reach 6, they would be transferred to another column.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
G
godsplane, 2021-10-29
@godsplane

display:grid;
grid-auto-flow: column;
grid-template-rows: repeat(6, 1fr);

Z
ZerdoX-x, 2021-10-29
@ZerdoX-x

The parent can put the flow on the vertical axis and add the transfer of elements on overflow. For overflow to occur, you need to limit the height of the parent.

display: flex;
flex-direction: column;
max-height: 100px;
flex-wrap: wrap;

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question