Just put your padding that fixes things up in IE in here (you can include something for the copy notice in here too):
Code:
<!--[if IE]>
<style type="text/css">
/* IE only Styles here */
</style>
<![endif]-->
And put that right after your (I'm adding the required type attribute in red):
Code:
<link rel="stylesheet" href="styles.css" type="text/css">
or put the IE styles in a separate style sheet - say ie_styles.css, and link it in after your other sheet like so:
Code:
<link rel="stylesheet" href="styles.css" type="text/css">
<!--[if IE]>
<link rel="stylesheet" href="ie_styles.css" type="text/css">
<![endif]-->
These are not alternate styles. They are supplemental. So only include what needs to be added and/or different in IE.
Bookmarks