How can I make a specific css stylesheet for internet explorer 8 ?
I mean, how can I load it only if the browser is IE8 ? (And not IE7 and IE6)
thanks
How can I make a specific css stylesheet for internet explorer 8 ?
I mean, how can I load it only if the browser is IE8 ? (And not IE7 and IE6)
thanks
You can use the following:
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="ie8.css" media="screen" />
<![endif]-->
use this
<!--[if IE 8]>
<link href="/stylesheets/iestyle8.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if IE 8]>
<link href="ie8.css" rel="stylesheet" type="text/css" />
<![endif]-->