how to tilt a picture in css code example
Example 1: rotate image html
.img {
transform: rotate(90deg);
}
Example 2: image orientation css
#image {
image-orientation: 90deg; /* Can be changed in the live sample */
}
.img {
transform: rotate(90deg);
}
#image {
image-orientation: 90deg; /* Can be changed in the live sample */
}