Answer the question
In order to leave comments, you need to log in
Is there cross browser support for transform?
Judging by the documentation, Css3 is very cool
ruseller.com/lessons.php?rub=2&id=1739
But is there any JS library that allows us to write all this cross-browser, and understandably?
Answer the question
In order to leave comments, you need to log in
div {
-ms-transform: translate(50px,100px); /* IE 9 */
-moz-transform: translate(50px,100px); /* Firefox */
-o-transform: translate(50px,100px); /* Opera */
-webkit-transform: translate(50px,100px); /* Safari */
transform: translate(50px,100px);
}
Not! If it's a Css3 property, how do you want it to work, for example in old ie?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question