Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Segoe UI Light" font does not render in FireFox 7

Tags:

css

fonts

In our website "Segoe UI Light" font does not render properly in FireFox 7, while it does in IE9. What should I check?

like image 843
abenci Avatar asked Feb 23 '12 14:02

abenci


2 Answers

Try this CSS

font-family: Segoe UI;
font-weight: lighter;

Actually font family name is Segoe UI and Light is the style (sub font, as in case of bold and italic)

This works on my side

like image 117
kingpin Avatar answered Oct 21 '22 03:10

kingpin


This worked perfect for me. Also works on all major browsers.

font-family: "Segoe UI Light","Segoe WPC","Segoe UI",
              Helvetica, Arial, "Arial Unicode MS", Sans-Serif;

Btw, Segoe UI Light is a standalone font, not a style.

like image 29
Manul Avatar answered Oct 21 '22 05:10

Manul