04-03-2008, 10:21 PM
|
#6 (permalink)
|
|
The Wanderer
Join Date: Jan 2008
Location: Australia
Posts: 14
Thanks: 1
|
To deliver IE specific code, use IE conditionals.
For example:
Code:
<!--[if IE]>
<link rel="stylesheet" href="..." type="text/css" media="screen, projection" charset="utf-8" />
<![endif]-->
<!--[if lte IE 6]>
<link rel="stylesheet" href="..." type="text/css" media="screen, projection" charset="utf-8" />
<![endif]-->
<!--[if !IE]>
<link rel="stylesheet" href="..." type="text/css" media="screen, projection" charset="utf-8" />
<!-- <![endif]-->
|
|
|