css – 孩子选择器的替代物是什么?

前端之家收集整理的这篇文章主要介绍了css – 孩子选择器的替代物是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
由于IE6不支持子选择器(参见 http://kimblim.dk/csstest/#ex1),处理此浏览器时可以使用哪种方法

我不想修改标记,我更喜欢一个CSS唯一的解决方案…

是的,这是我想要的目标的直接的孩子.

谢谢!

解决方法

我遇到了一个黑客: http://meyerweb.com/eric/thoughts/2005/05/31/universal-child-replacement/
使用“ star html”黑客IE(6及更低版本)与此结合使我可以选择直接的孩子.假设我们要对E的直接孩子F应用10px的padding-top:
* html body E F
{
    /* apply style here for IE 6 */
    padding-top: 10px;
    /* This applies the style to every F inside of E */
}
* html body E * F
{
    /* undo style here */
    padding-top: 0px;
    /* This will undo the style set above for every F that has something in between itself and E,that is,every F besides the direct children of E */
}

我非常感谢你们迄今为止的回应,但是我讨厌接受我自己的答案,这是我最终决定的解决方案.多谢你们!

原文链接:https://www.f2er.com/css/214179.html

猜你在找的CSS相关文章