M
M
Maxim Ivanov2015-09-19 20:26:30
css
Maxim Ivanov, 2015-09-19 20:26:30

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

2 answer(s)
P
Philipp, 2015-09-19
@omaxphp

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 supported by older browsers. caniuse.com/#search=transform

D
Dima Pautov, 2015-09-19
@bootd

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 question

Ask a Question

731 491 924 answers to any question