Reputation: 23203
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
Reputation: 1318
Try:
font-family: "Arial", "Verdana", "Helvetica", "sans-serif";
Upvotes: 1