Transform in CSS
The transform property allows you to rotate, scale, skew, and translate an element. Here's an example of how to use the transform property to rotate an element:
css
.box {
transform: rotate(45deg);
}
This will rotate the .box element by 45 degrees.
No comments:
Post a Comment