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?

  • And what version? - MihailPw
  • and html add - HamSter
  • Updated to version 59.0.3071.109, and earned. Thanks for the tip)) But it’s strange that while these properties are not displayed in DevTools - nirolo1

1 answer 1

I advise you first to study browser compatibility, if something works for you on one browser, but not on the other.

For column-count compatibility with browsers can be viewed here .
(supported by Chrome from version 50 with the prefix -webkit- )

  • understood, thanks for the advice - nirolo1