Smooth Color Transitions on Links in CSS


Create smooth transitions for link colors on hover.

Source Code

a {
    color: #000;
    transition: color 0.3s;
}
a:hover {
    color: #ff6347;
}
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments