0

My question is about CSS vendor prefixes: -webkit, -moz, -ms, -o, etc.

How do I know which I should add to which css properties?

  • has been asked before, did you even search ? – Alin Dec 06 '14 at 19:08
  • --> http://peter.sh/experiments/vendor-prefixed-css-property-overview/ – UserDy Dec 06 '14 at 19:10
  • Does this answer your question? [What CSS3 features still need vendor prefixes?](https://stackoverflow.com/questions/42445951/what-css3-features-still-need-vendor-prefixes) – tog22 Sep 18 '20 at 17:15

1 Answers1

4

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)

ckuijjer
  • 13,293
  • 3
  • 40
  • 45