CSS Transitions


Create smooth transitions between property values with the transition property.

Source Code

.transition {
    transition: background-color 0.5s ease;
}
.transition:hover {
    background-color: coral;
}
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments