Evanss
Evanss

Reputation: 23203

Arial specified in CSS breaks site in IE9

I've only seen this issue in IE9 and only on certain PCs. In my CSS I have the following, which sometimes causes a blank page:

font-family: Arial, Verdana, Helvetica, sans-serif;

If I change the CSS to this then the page loads, but Arial is not used for the font:

font-family: "Arial, Verdana, Helvetica, sans-serif";

Upvotes: 0

Views: 882

Answers (1)

Amir E. Aharoni
Amir E. Aharoni

Reputation: 1318

Try:

font-family: "Arial", "Verdana", "Helvetica", "sans-serif";

Upvotes: 1

Related Questions