我需要和内联样式代码来消除wordpress模板样式css

时间:2014-09-25 15:49:46

标签: css wordpress external inline-styles

我需要一个类似的代码:

<div style="templateCSS:none">Content that has mysterious WordPress template CSS applied on it</div>

我不想用另一种内联样式覆盖它,我只想删除所有内容。

1 个答案:

答案 0 :(得分:0)

我想你可以为元素的每个属性使用CSS3关键字initial。像这样:

HTML

<div class="reset-style">Content that has mysterious WordPress template CSS applied on it</div>

CSS

.reset-style{
    margin : initial;
    margin-bottom : initial;
    margin-left : initial;
    margin-right : initial;
    margin-top : initial;
    /* All the css properties*/
}

检查此答案:Reset/remove CSS styles for element only