Answers for "how to rotate picture to the right in css"

CSS
4

rotate image html

.img {
transform: rotate(90deg);
}
Posted by: Guest on May-20-2020
2

how to rotate picture to the right in css

.img {
	transform: rotate(10deg);
  	/*to rotate an image you have to use the transform function in CSS and rotate
  	in degrees*/
}
Posted by: Guest on October-10-2020

Code answers related to "how to rotate picture to the right in css"

Browse Popular Code Answers by Language