how position rotate any tag in css code example
Example 1: rotate css
div {
width: 80px;
height: 80px;
background-color: skyblue;
}
.tourne {
transform: rotate(45deg); /* Équivalent à rotateZ(45deg) */
background-color: pink;
}
Example 2: rotate element css
div {
width: 80px;
height: 80px;
background-color: skyblue;
}
.rotated {
transform: rotate(45deg); /* Equal to rotateZ(45deg) */
background-color: pink;
}