Okay, question for those of you more versed in CSS than I am; is there a way to have the same CSS tag act differently depending on what browser is being used? What I basically want to do is have the margins on something set differently depending on if the browser is or isn't IE.
For example, something like:
if browser=IE
.testtag { margin: 8px;}
else
.testtag { margin: 4px;}
Anyway to do something like that?
