在css中有什么比重要的更重要吗?

时间:2011-08-05 13:41:38

标签: css wordpress

似乎我的wordpress主题默认添加了一种字体颜色,带有!important条件,它显示为内联样式。它不是针对我需要的,所以我能做些什么呢?我已经尝试了!重要!重要:))

2 个答案:

答案 0 :(得分:13)

唯一能用!important覆盖内联样式的东西是子元素的样式:

<div style='color: red ! important'>
     <span style='color: green'>This is green.</span>
</div>

答案 1 :(得分:0)

您可以使用以下方式覆盖内联html样式:

div[style] { color: red !important; }