I have CSS rules for input as
input
input { background:#FFFFFF } input:hover { background:#BBBBBB }
I want to apply this style to al
You can just overwrite the general input field style with a new style for submit input fields. Check it out: http://jsfiddle.net/dpYRX/2/
input { background:#FFFFFF } input:hover { background:#BBBBBB } input[type="submit"] { background: #ff0000; } input[type="submit"]:hover { background: #cdcdcd; }