2
StudioC helped me out on this one:
use input#submit and input#button etc. for MSIE
Give each browser specific style it's own style definition:
input[type=a],input[type=b],input[type=c] {
}
input#a,input#b,input#c {
}
Because otherwise IE will ignore them.
Herko