I have a list of things in a three-column layout. I want to add some extra information to each item but I got into the problem that column changes between header and content of a block like in the image (issue is between first and second column).
This is my current css:
@media only screen and (min-width: 961px) {
div.three-column {
column-count: 3;
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
}
How could I fix this? Each block is a div already.