I have a that I want to rotate 90 degrees: How can I do this?
that I want to rotate 90 degrees: How can I do this?
How can I do this?
We can add the following to a particular tag in CSS:
-webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -o-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg);
In case of half rotation change 90 to 45.
90
45