FireFox无法正确呈现字体

时间:2011-10-02 20:49:05

标签: html css

有人可以告诉我为什么FireFox没有呈现Lucida Sans Unicode字体类型吗?根据w3schools,它是默认的网页安全字体。 Chrome和IE都可以正常使用。

html, body {
    height: 100%;
    font-size: 100%;
    min-width: 950px;
    color: #000;
    font: normal 12px "Lucida Sans Unicode" Geneva, Tahoma;
}

1 个答案:

答案 0 :(得分:3)

您可能需要Lucida部分之后的逗号:

html, body {
    height: 100%;
    font-size: 100%;
    min-width: 950px;
    color: #000;
    font: normal 12px "Lucida Sans Unicode", Geneva, Tahoma;
}

http://jsfiddle.net/GVCy2/