Jump to content

Google Chrome and @Font-Face


papillonstudios

Recommended Posts

Google Chrome isnt using a font i have set with the CSS3 @font-face attribute.

 

the font works in Firefox, Safari, Opera and OMG even IE.

 

I have updated Chrome tot he latest stable release and still nothin, i have version 5.0.375.127

 

whats wrong?

Link to comment
https://forums.phpfreaks.com/topic/212151-google-chrome-and-font-face/
Share on other sites

early Chrome browsers didnt support it/the feature was turned off by default... if your Chrome is up-to-date then the following kind of code should work:

 

@font-face {
font-family: 'myFont';
src: url("/fonts/myFont.eot");		//IE
src: local('myFont'), url('/fonts/myFont.ttf') format('truetype') ;	//Chrome, FF etc
}

 

... im currently using a custom font on my site (local), and it works fine with Chrome (tested on Windows and Ubuntu)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.