解决方法
我遇到了一个黑客:
http://meyerweb.com/eric/thoughts/2005/05/31/universal-child-replacement/
使用“ star html”黑客IE(6及更低版本)与此结合使我可以选择直接的孩子.假设我们要对E的直接孩子F应用10px的padding-top:
使用“ 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 */ }
我非常感谢你们迄今为止的回应,但是我讨厌接受我自己的答案,这是我最终决定的解决方案.多谢你们!