I've been experimenting with new button styles and running into a challenge: my <button>
CSS :hover
selector is not working as intended.
Despite multiple attempts, I have not been able to get it to function correctly.
Any suggestions on how to achieve this successfully?
Here's the code I'm currently using:
.button_depression {
background: url(http://67.media.tumblr.com/tumblr_m9atx55D6F1qd1e6no1_400.gif) no-repeat;
border: 0;
color: #ffffff;
padding: 5px 35px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
cursor: pointer;
border-radius: 5px;
font-family: Times New Roman;
transition-duration: 0.5s;
}
.button_depression:hover {
background-color: #959595;
}