CSS basic animate: Transition
HTML
<a href="#">Lorem ipsum</a>
<div class="testhere"></div>
CSS
html * {
transition: 1s;
}
a{
color:green
}
a:hover{
color:orange;
text-decoration:none;
}
.testhere {
width: 100px;
height: 100px;
background: red;
}
.testhere:hover {
width: 300px;
background: purple;
}