Where can I find a list of all the properties / extensions of the provider CSS prefix?

I often see new vendor-specific properties, suggesting that this issue was seen somewhere -moz-appearance:button; (makes the element look like a button).

Where can I find a list of all these extensions (provider prefix rules)?

Mozilla has one , Opera has one , there is "unofficial" for webkit (this does not explain the properties). I'm out of luck with IE. If there is not one in one place, there may be an official, exhaustive list for IE and webkit.

+7
source share
2 answers
+4
source

You can use tools like pleeease.io , where you can enter your shared css, and in return you can get css that will be supported by most browsers:

Enter

 a { column-count: 3; column-gap: 10px; column-fill: auto; } 

Exit

 a { -webkit-column-count: 3; -moz-column-count: 3; column-count: 3; -webkit-column-gap: 10px; -moz-column-gap: 10px; column-gap: 10px; -webkit-column-fill: auto; -moz-column-fill: auto; column-fill: auto; } 
0
source

All Articles