当前位置:  开发笔记 > 前端 > 正文

在IE6中使用">"选择器

如何解决《在IE6中使用">"选择器》经验,为你挑选了1个好方法。

我编写了一些使用父>子选择器来定位元素的CSS.特别是对于表格,所以我可以像这样对页眉和页脚应用某些样式

table > thead > tr > th ...
table > tbody > tr > td ...
//there are other uses in the css as well

这在IE6中除外,效果很好.为了支持IE6,我最好的解决这个css的方法是什么?



1> davethegr8..:

如果我想选择E> F,我会使用

E F {
    set-some-style: value;
}

E * F {
    unset-some-style: 0;
}

只有,当你有很多>选择器时,这不能很好地工作.

更多阅读:http: //www.sitepoint.com/blogs/2005/06/20/erics-universal-child-selector/

推荐阅读
手机用户2402851155
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有