Is there a way to choose background-color
with a browser condition?
I want to do something like this:
browser.css
-o-background-color: red;
-moz-background-color: green;
-webkit-background-color: blue;
If the condition could be in CSS it will be better. If it's not possible, it can be in Javascript also.
But first, is this condition possible?
Thanks!!