Specific stylesheet for IE8

2019-06-17 12:04发布

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)

3条回答
太酷不给撩
2楼-- · 2019-06-17 12:31

use this

<!--[if IE 8]>
<link href="/stylesheets/iestyle8.css" rel="stylesheet" type="text/css" />
<![endif]--> 
查看更多
放荡不羁爱自由
3楼-- · 2019-06-17 12:33

You can use the following:

<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="ie8.css" media="screen" />
<![endif]-->
查看更多
我命由我不由天
4楼-- · 2019-06-17 12:39
<!--[if IE 8]>
<link href="ie8.css" rel="stylesheet" type="text/css" />
<![endif]-->

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

查看更多
登录 后发表回答