Make Adobe fonts work with CSS3 @font-face in IE9

前端 未结 19 2059
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-27 10:04

I\'m in the process of building a small intranet application and try, with no luck, to use Adobe font I purchased lately. As I was informed, in our case it\

相关标签:
19条回答
  • 2020-11-27 10:40

    The issue might be to do with your server configuration - it may not be sending the right headers for the font files. Take a look at the answer given for the question IE9 blocks download of cross-origin web font.

    EricLaw suggests adding the following to your Apache config

    <FilesMatch "\.(ttf|otf|eot|woff)$">
        <IfModule mod_headers.c>
            Header set Access-Control-Allow-Origin "http://mydomain.com"
        </IfModule>
    </FilesMatch>
    
    0 讨论(0)
提交回复
热议问题