CSS COURSE • LESSON

✨ CSS Transitions

Master CSS and create modern responsive websites with EDUHUB CODE HUB.

CSS Transitions

Transitions create smooth changes.



button {

background:red;

transition:0.5s;

}


button:hover {

background:blue;

}