Autobots

How do i create cross-browser rotation transformation with css?

Asked by Autobots 2 years ago css rotation transform


Themans
1
 
Here's the code for CSS transform rotation effect. It works with all of the common browsers.

#one {
-moz-transform:rotate(45deg);
-webkit-transform:rotate(45deg);
-o-transform:rotate(45deg);
-ms-transform:rotate(45deg);
}

Source: samuli.hakoniemi.net

by Themans 2 years ago

Answer this question

How do i create cross-browser rotation transformation with css?

0 errors found:

 
0