I have a page with a "load more" feature. I use the column-count
CSS property to divide it into two columns.
When I click to load more, the first 4 divs change sorting and they all are in the first column. Check the drawing below or https://elodywedding.com/reviews1
I would need the first 4 divs to stay in the same place and only append the rest.
Is there any solution or workaround that works on most browsers?
.parrent {
column-count: 2;
}
<div class="parrent">
<div class="block">content 1</div>
<div class="block">content 2</div>
<div class="block">content 3</div>
<div class="block">content 4</div>
</div>