In the list of categories in my store I needed to display a list in several columns, for this I used:
-webkit-column-count:3; -moz-column-count:3; column-count:3; -webkit-column-width: 25%; -moz-column-width: 25%; column-width: 25%; -webkit-column-gap: 10px; -moz-column-gap: 10px; column-gap: 10px; with column width, indentation, etc. The problem is that on Chrome column-count doesn't work at all. Everything works fine in Firefox and Opera. What could be the problem?