Is there any alternative to -webkit-transform
CSS rules in Firefox?
Asked
Active
Viewed 1.2k times
1 Answers
10
Yes, it's called -moz-transform. Check out this article
http://www.zachstronaut.com/posts/2009/02/17/animate-css-transforms-firefox-webkit.html
Here is the official documentation: https://developer.mozilla.org/en/CSS/-moz-transform
-
also `-o-transform` for opera, and `-ms-transform` for ie, and they are called _vendor prefixes_, not _alternatives_ :( – c69 Sep 27 '11 at 19:30
-
1thanks but if they all do the same, why are they even differently named? – clamp Sep 27 '11 at 20:29
-
@clamp: [So from a practical perspective vendor prefixes are turning into a tool for fragmentation. From a philosophical perspective, moreover, they solve problems that just aren’t there any more.](http://www.quirksmode.org/blog/archives/2010/03/css_vendor_pref.html) – user123444555621 Sep 27 '11 at 20:46
-
@clamp: Yes, they all implement this spec: http://www.w3.org/TR/css3-2d-transforms/#transform-property. – Wladimir Palant Sep 28 '11 at 12:31