Transitions create smooth animations when a property changes.
div {
transition: all 0.5s;
}
div:hover {
background: red;
}
Transitions create smooth animations when a property changes.
div {
transition: all 0.5s;
}
div:hover {
background: red;
}
Leave a Reply