html - Button:hover not working in Firefox -
i haveing problem hover not working in firefox! working in chrome, ie 9, ie 8 , ie 7. somewone know problem , how fix it?
the css:
.row button span:hover { background-position : left bottom; border : 1px solid #2b2b2b; }
the html:
<button type="submit"><span>button</span></button>
it looks hover event isn't getting fed down span.
try selecting button:hover span
instead of button span:hover
here's jsfiddle works okay doing above: http://jsfiddle.net/3j7g5/
Comments
Post a Comment