align divs vertically start new column after every row

Solutions on MaxInterview for align divs vertically start new column after every row by the best coders in the world

showing results for - "align divs vertically start new column after every row"
Valentina
29 Jun 2017
1.column-container {
2  column-width: 15rem; /* width of each column */
3  column-gap: 1rem; /* increase gap between each column */
4  width: 80%;
5}
6
7.column-container .column {
8  margin-bottom: 1rem;
9}