Skip to content

Latest commit

 

History

History
30 lines (12 loc) · 426 Bytes

CSS Transforms and Transitions.md

File metadata and controls

30 lines (12 loc) · 426 Bytes

CSS Transforms and Transitions

s

CSS transforms and transitions allow you to apply smooth and animated transformations to elements. Here's an example:

.box {

width: 100px;

height: 100px;

background-color: blue;

transition: transform 0.3s ease;

}

.box:hover {

transform: rotate(45deg);

}