On IE CSS font-face works only when navigating through inner links

后端 未结 8 952
没有蜡笔的小新
没有蜡笔的小新 2020-12-01 06:30

Our webdesigner has created a CSS with the following font-face:

@font-face {
    font-family: \'oxygenregular\';
    src: url(\'oxygen-regular-webfont.eot\')         


        
8条回答
  •  天命终不由人
    2020-12-01 06:46

    Don't set the Vary Request Header to https

    No font loading

    Vary:Accept-Encoding,https
    

    Works

    Vary:Accept-Encoding
    

    Setting the cache header is necessary to avoid delayed font loading.

提交回复
热议问题