for example - column-count
On w3schools you can see that you need browser specific code:
-webkit-column-count:
-moz-column-count:
column-count: 3;
The same info is on many other sites, for example - css tricks - for columns
In my code I write just this:
column-count: 3; or columns: 3;
it works perfectly in Chrome, Firefox, Opera, Safari.
So is there any valid address on the web, where I can see 100% valid info do I need a browser specific css code or not?