我遇到过:
/* for firefox only */
@-moz-document url-prefix() {
#main_menu ul ul {
top: 37px;
}
}
仅可用于定义 Firefox 样式,是否有类似的替代方法可用于定义仅与 IE 一起使用的样式?还是这里的“条件样式表”方法被认为是最佳实践?
http://css-tricks.com/how-to-create-an-ie-only-stylesheet/
在这种情况下,我只想更改下拉 CSS 菜单的上边距,因此只需要为 ie 调整几个样式。
谢谢你。
ps我遇到过:
并试图提出:
<!--[if IE]><!--> <html class="ie"> <!--<![endif]-->
在头部,然后在css中定义:
.ie#main_menu ul ul {
top: 50px !important;
}
但我看不到 IE 的任何变化。