Why the font "Segoe UI Light" is not displayed in FireFox 13.0

On the website, I use the font "Segoe UI Light", which does not display properly in FireFox 13.0, while it works in IE9.

I made changes to css as below

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

but it does not work for me.

Please provide a solution for this.

+1
css fonts
source share
4 answers

Use only

 font-family: Segoe UI Light; 

without font-weight . What you are doing now is correct in principle, but Firefox, Chrome, etc. They cannot correctly select and use the font Segoe UI Light.

+5
source share

The following code worked for me and is compatible with all browsers

  font-family: "Segoe UI Light","Segoe UI"; font-weight: 300; 
+2
source share

You need to specify a family name:

 font-family: "Segoe UI"; font-weight: lighter; 
0
source share

I grabbed css from the official Microsoft website, these two lines should work well. Put it in the body

 body { font-family: "wf_SegoeUILight","wf_SegoeUI","Segoe UI Light","Segoe WP Light","Segoe UI","Segoe","Segoe WP","Tahoma","Verdana","Arial","sans-serif"; font-weight: 300; } 
0
source share

All Articles