My project has external CSS that contains all the styles for my site. The site looks great in Firefox, but it becomes a mess in Internet Explorer (as usual).
Is there a way to write CSS so that specific styles only apply to certain browsers?
For example, if I have a class called:
.col2{ width:237px; }
How can I adjust this class to have a different width in IE and Firefox?
NOTE: I do not want to use JavaScript to identify the browser.