aneuryzm
aneuryzm

Reputation: 64834

Specific stylesheet for IE8

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)

Upvotes: 7

Views: 6126

Answers (3)

meo
meo

Reputation: 31249

<!--[if IE 8]>
<link href="ie8.css" rel="stylesheet" type="text/css" />
<![endif]-->

http://www.quirksmode.org/css/condcom.html

Upvotes: 8

red-X
red-X

Reputation: 5128

use this

<!--[if IE 8]>
<link href="/stylesheets/iestyle8.css" rel="stylesheet" type="text/css" />
<![endif]--> 

Upvotes: 10

John McCollum
John McCollum

Reputation: 5142

You can use the following:

<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="ie8.css" media="screen" />
<![endif]-->

Upvotes: 5

Related Questions