我知道,内联样式是“邪恶的”,但是在html中插入了javascript(jQuery动画)。那么,有可能吗?
答案 0 :(得分:3)
这:
<div style="background: red;">
The inline styles for this div should make it red.
</div>
可以用以下内容覆盖:
div[style] {
background: yellow !important;
}
您可以将!important
添加到任何css属性
答案 1 :(得分:2)
尝试在打印样式表中的值和分号之间放置!important:
body {
background-color: #0f0 !important;
}