CSS code snippet – How to add animation to a button hover?
/* Changes an element's color on hover */ .selector { background-color: black; } .selector:hover { background-color: blue; }
/* Changes an element's color on hover */ .selector { background-color: black; } .selector:hover { background-color: blue; }