Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I used css3 font-face query in my css to integrate some paid fonts in my project. It works fine in all browsers except IE8. The reason is IE8 does not support font-face query (Reference - http://www.w3schools.com/css/css3_fonts.asp[^]). Or may be some problem....

My CSS code -

C#
@font-face {

font-family: 'Font1';

src: url('fonts/Font1-webfont.eot?') format('eot'),

url('fonts/Font1-webfont.woff') format('woff'),

url('fonts/Font1-webfont.ttf') format('truetype'),

url('fonts/Font1-webfont.svg#webfontdSscXrwb') format('svg');

font-weight: normal;

font-style: normal;

}



Any one have solution for this problem then please help me.
Posted

1 solution

upgrade the IE to version 9 or above.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900