删除google-code-prettify border

时间:2013-06-02 10:11:02

标签: pre google-code-prettify

我想在使用google-code-prettify时删除代码边框。我尝试了以下但没有结果。

pre.prettyprint {
    border: none;
}

我还尝试删除所有pre标签上的边框,同样没有结果。

pre {
    border: none;
}

谢谢!

1 个答案:

答案 0 :(得分:5)

我认为你需要告诉浏览器它应该听哪些样式指令。 !important属性应该告诉te浏览器你希望你的css先例。

pre.prettyprint {
border: none !important;

}