Collective Web Design

How To Create IE Only Stylesheet

Internet Explorer 6 (IE6) doesn’t have the standard CSS styling other browsers have. For this reason you may need to specify alternate style sheets for different browsers.


Below you will find three codes you can use to create style sheets for different versions of IE.



IE ONLY:

1
2
3
<!--[if IE]>
	<link rel="stylesheet" type="text/css" href="ie-only.css" />
<![endif]-->

IE 7 ONLY:

1
2
3
<!--[if IE 7]>
	<link href="IE-7.css" rel="stylesheet" type="text/css">
<![endif]-->

IE 6 ONLY:

1
2
3
<!--[if IE 6]>
	<link rel="stylesheet" type="text/css" href="IE-6.css" />
<![endif]-->

Leave a Reply