<pre> tag markup</pre>

时间:2011-05-24 11:38:14

标签: html css fonts pre

是否可以更改<pre>标记中的字体?例如,我不喜欢快递字体,但我喜欢consolas字体。我改变了这个在css?

我尝试了以下内容:

pre {
    color: white;
    font: "Consolas";
}

但这在Firefox / IE中无效...

谢谢!

伊凡

2 个答案:

答案 0 :(得分:4)

font速记属性要求您指定字体大小。

改为使用font-family属性。

答案 1 :(得分:0)

font-family应该可以工作。尝试

.pre {
    color: #fff;
    font-family:Consolas;
}