6

Is there any alternative to -webkit-transform CSS rules in Firefox?

TylerH
  • 20,799
  • 66
  • 75
  • 101
clamp
  • 33,000
  • 75
  • 203
  • 299

1 Answers1

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
  • 1
    thanks 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