Internet Explorer keeps mucking up all the neat CSS that works fine in Firefox and Opera.
Could someone suggest a script that would do something like this:
Code:
if browser IE then
response.write
<link rel="stylesheet" type="text/css" href="IE.css">
else
response.write
<link rel="stylesheet" type="text/css" href="normal.css">
ASP only please, no javascript
Thank you in advance!
Using two separate stylesheets and IE conditionals in the HTML you don't need to use hacks like that, you just put the IE code in the IE stylesheet to override the standard code.