acctman
acctman

Reputation: 4349

FireFox not rendering font correctly

Can someone tell me why FireFox is not rendering the Lucida Sans Unicode font type? It's a default websafe font according to w3schools. Chrome and IE both render it fine.

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

Upvotes: 1

Views: 872

Answers (1)

Jared Farrish
Jared Farrish

Reputation: 49238

You probably want a comma after the Lucida part:

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

http://jsfiddle.net/GVCy2/

Upvotes: 3

Related Questions