For some reason when I combine columns and overflow-y: scroll or auto, the scroll is horizontal instead of vertical. Here's the code:
.list {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 5px;
-moz-column-gap: 5px;
column-gap: 5px;
max-height: 200px;
overflow-y: auto;
}
I've also tried using overflow-x, removing the column gap and using padding instead, nothing seems to work.