0

I'm playing with CSS perspective and I don't get the same result between firefox and chrome/ie. I want it to work as in chrome/ie (the flipping panel doesn't go over the non flipping cat when it closes).

Here the codepen.io I made for the question :http://codepen.io/mourtazag/pen/cdAuL

Thanks !

Mourtazag
  • 57
  • 6
  • maybe you will find your answer here. http://stackoverflow.com/questions/5411026/list-of-css-vendor-prefixes – MegaMind Jun 30 '14 at 15:41

1 Answers1

0

you may not be using proper vendor prefix.

-khtml- (Konqueror, really old Safari)

-moz- (Firefox)

-o- (Opera)

-ms- (Internet Explorer)

-webkit- (Safari, Chrome)

and also dont forget to use default code, i.e. code without vendor prefix.

MegaMind
  • 653
  • 6
  • 31