2019-10-01 Link hover animation Author Jens Törnell Comments Start a discussion When hovering over an element it often changes appearence. To make it smooth you can add an animation. .element { background: red; transition: all 0.3s ease; } .element:hover { background: green; } Playground Full page If you like this post, please share it! Tweet this! Animation Hover
Comments