/ Published in: HTML
Add to the of your page after the main stylesheet to serve different stylesheets for different versions of Internet Explorer
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//for any version of IE <!--[if IE ]> <link rel="stylesheet" href="file_path/ie.css" type="text/css" /> <![endif]--> //For IE 6 or earlier <!--[if lte IE 6]> <link rel="stylesheet" href="file_path/ie6.css" type="text/css" /> <![endif]--> <!--[if IE 7 ]> <link rel="stylesheet" href="file_path/ie7.css" type="text/css" /> <![endif]-->