ms-transform vs webkit-transform?

css, css-transforms, html, webkit

Solution

well `-webkit-` is for Chrome and safari where as `-ms` is for Internet Explorer

there are also other prefixes like -moz- for Firefox and -o- for Opera

here a link that might help: http://peter.sh/experiments/vendor-prefixed-css-property-overview/

Problem

I am new to CSS transform and animation, I was just wondering what is difference between those two. I under `-webkit-transform` is specific to chrome and `-moz-tranform` is to Mozilla Firefox. I can't find a difference between -webkit and -ms.

Original source