如何使用新的 HTML5 Boilerplate 来定位 IE9?
我正在尝试为 IE 指定一个类。但是,由于样板模板已更改,因此不再有效。
.myclass {
//do something
}
.ie7 .myclass {
///do something
}
这就是样板模板的新标题中的内容。
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
I am trying to target a class for IE. However, since the boilerplate template has changed this no longer works..
.myclass {
//do something
}
.ie7 .myclass {
///do something
}
This is what's in the new header of the boilerplate template.
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们不建议您以 IE9 为目标,因为它具有现代浏览器的所有标记,这就是为什么我们没有 IE9 特定的条件类。如果您仍然愿意,可以使用:
请注意 IE10 不会识别条件注释。
We do not recommend you target IE9 as it has all the marking of a modern browser, which is why we do not have IE9 specific conditional class. If you still would like to, you can use:
Note that IE10 will not recognize conditional comments.
牦牛样板!无论如何:
应该做你想做的事。
编辑
抱歉误读了您的问题,因为您以 IE7 为例。如果你想要 IE9 你可以这样做:
Yak Boilerplate! Anyway:
should do what you want.
EDIT
Sorry misread your question since you put IE7 in example. If you want to IE9 you can just do: