I use hover, active and disabled to style Buttons.
But the problem is when the button is disabled the hover and ac
Why not using attribute "disabled" in css. This must works on all browsers.
button[disabled]:hover { background: red; } button:hover { background: lime; }