覆盖div中所有子项的内联样式

时间:2013-09-17 07:17:36

标签: html css

<div style="color:#FFFFFF !important;">

<!-- A Dynamic content comes from from third party. -->
<p style="color:red;"> This should be white instead of red. </p>
<p>Test is test. This should also be white.    </p>
<span> Check is check. This should also be white.    </span>
<!-- Dynamic Content ends -->
</div>

如何在上面给出的div中将所有文本都设为白色。是否可以使用任何 jquery 或其他类似语言?

2 个答案:

答案 0 :(得分:1)

使用Jquery children()css()函数覆盖样式,请检查我的FIDDLE演示

答案 1 :(得分:0)

终于找到了答案。

$(div p).css('color':'white');
$(div span).css('color':'white');

这就是我想要的。它也会覆盖所有p标签的内联css。