I found a command to change CSS in Firefox:
@-moz-document url-prefix() {
body {
background: #f00;
}
}
This command will put a red background in firefox, for example.
I found it very useful, but I would like to know if I can do this with other browsers, but in this style, without the use of "<!--[if IE 8]>"
for example.