有人可以告诉我为什么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;
}
答案 0 :(得分:3)
您可能需要Lucida
部分之后的逗号:
html, body {
height: 100%;
font-size: 100%;
min-width: 950px;
color: #000;
font: normal 12px "Lucida Sans Unicode", Geneva, Tahoma;
}