I have used the CSS3 multi-column feature, using the column-count
property to split into multiple columns.
This is my code:
div {
-webkit-column-count: 3; /* Chrome, Safari, Opera */
-moz-column-count: 3; /* Firefox */
column-count: 3;
}
It's not working on my Firefox version or Firefox developer Edition. The code is working on: Google Chrome, Opera, and Microsoft Edge.
Is this a bug or is there any solution?
column-fill: auto;
was causing this problem. – Barbee