My question is about CSS vendor prefixes: -webkit, -moz, -ms, -o, etc.
How do I know which I should add to which css properties?
My question is about CSS vendor prefixes: -webkit, -moz, -ms, -o, etc.
How do I know which I should add to which css properties?
You can search through Can I use to see which browser/version combinations need a vendor prefix.
But if you use a build tool, such as Grunt or Gulp, for your front end development work you can have these vendor prefixes automatically added to the resulting CSS. Take a look at Autoprefixer (Grunt plugin Gulp plugin)