I want to globally change the style of any submit button. I am doing something like this but it's not working:
Code:input.submit { };
Printable View
I want to globally change the style of any submit button. I am doing something like this but it's not working:
Code:input.submit { };
is the proper way to do it. IE doesn't support CSS well enough to handle this though.Code:input[type="submit"] { ... }
Thanks, but as you mentioned, it doesn't work in IE (and it didn't).
I guess I'll have to do manual colouring inside the <input> tag.:)
why don't you just make a class?
.box {...}
<input type=submit class=box>