/ Published in: CSS
To use css which will only be applied if the browser is IE.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Create an new css document and link to it from your html page using the following filter: <!--[if IE]> <link rel="stylesheet" type="text/css" href="iestyles.css" /> <![endif]--> Where iestyles.css is your css document containing all the rules which will be only applied if IE browser is detected.
URL: http://msdn2.microsoft.com/en-us/library/bb250496.aspx