-
Which of the following will rotate an element clockwise or counter-clockwise?
-
- matrix()
- skewY()
- skewX()
- rotate()
- None of these
Correct Option: A
The rotate() method rotates an element clockwise or counter-clockwise according to the given degree,
div {-ms-transform: rotate(12deg); /*IE*/ -webkit-transform: rotate(12deg); transform: rotate(12deg); }