如何在print css中覆盖内联样式?

时间:2011-05-09 10:46:16

标签: javascript jquery css printing override

我知道,内联样式是“邪恶的”,但是在html中插入了javascript(jQuery动画)。那么,有可能吗?

2 个答案:

答案 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;
}