I have an svg i want to fill the background on hover and make it slide down, i made the hover effect but i cant make the fill slide down on hover how can i do that? here is my code:
svg:hover{
fill: #080;
}
i want to do something like this animation:
#grad:hover {
background: red; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(red, yellow); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(red, yellow); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(red, yellow); /* For Firefox 3.6 to 15 */
background: linear-gradient(red, yellow);
}