如何覆盖内联样式

时间:2015-02-09 17:16:40

标签: css

这是我的风格

<section id="text-13" class="widget widget_text">
    <div class="widget-wrap">           
        <div class="textwidget">
            <div style="background-color:#f7f6f6; padding: 15px;">
                <div align="center">
                    <h2>Junte-se a mais de 4.137 assinantes:</h2>
                </div>

如何在不编辑文件的情况下通过CSS覆盖div style = background。

2 个答案:

答案 0 :(得分:2)

根据CSS Tricks Article

.textwidget div[style] {
   background: yellow !important;
}

答案 1 :(得分:0)

你可以使用!important

.textwidget&gt; div {background:none!important}