CSS: Hover a HTML submit button -
i'm trying style html submit button in css:
html:
<input type="submit" value="yes" id="popupyes">"
css:
#popupyes { width: 60px; height: 30px; background-color: black; } #popupyes:hover { background-color: white; }
the basic style works background not change color on hover.
your original code works me. sure don't have other conflicting styles inherited submit button.
Comments
Post a Comment