什么我们可以使用目标赢得ie7?

时间:2012-02-01 06:48:28

标签: css internet-explorer

我们可以同时针对ie6& ie7与* hack。

有没有办法只针对ie7,就像你可以用下划线黑客攻击ie6一样?

2 个答案:

答案 0 :(得分:1)

使用conditional stylesheets代替css hacking。

示例:

<!--[if lte IE 7]>
This is only read by IE7 and lower. Include specific css here.
<![endif]-->

如果你坚持使用css hacks(你不应该),请选择look here

取自this source(信用到webdevout.net)

仅限IE 7:*:first-child+html {}

答案 1 :(得分:0)

<!--[if ie 7]><link rel="stylesheet" href="styles-for-ie7-only.css" /><![endif]-->