top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Why css transform animation does not work on Safari, but work on Chrome?

+1 vote
274 views
Why css transform animation does not work on Safari, but work on Chrome?
posted Feb 22, 2016 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Yes its true, try something like following and it will cover all the browsers -

.myclass {
    transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
}
answer Feb 22, 2016 by Salil Agrawal
Similar Questions
...