I have CSS rules for input as
input
input { background:#FFFFFF } input:hover { background:#BBBBBB }
I want to apply this style to al
You may use the :not() selector.
input:not([type='submit']):hover { /* rules here */ }