当前位置 : 主页 > 网页制作 > css >

css – IE8不支持Google API字体

来源:互联网 收集:自由互联 发布时间:2021-06-13
我在下面的代码中使用了来自的字体支持, link href='http://fonts.googleapis.com/css?family=Open+Sans|Oswald|Play|Numans' rel='stylesheet' type='text/css' 如果我使用上面的URL,所有浏览器支持的字体. @font-face
我在下面的代码中使用了来自的字体支持,

<link href='http://fonts.googleapis.com/css?family=Open+Sans|Oswald|Play|Numans' rel='stylesheet' type='text/css'>

如果我使用上面的URL,所有浏览器支持的字体.

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: normal;
  src: local('Oswald '), local('Oswald'), url('http://themes.googleusercontent.com/static/fonts/oswald/v2/-g5pDUSRgvxvOl5u-a_WHw.woff') format('woff');
}
@font-face {
  font-family: 'Numans';
  font-style: normal;
  font-weight: 400;
  src: local('Numans'), local('Numans-Regular'), url('http://themes.googleusercontent.com/static/fonts/numans/v2/H6jkjoZl4TIrPYyjhdoCcw.woff') format('woff');
}
@font-face {
  font-family: 'Play';
  font-style: normal;
  font-weight: normal;
  src: local('Play'), url('http://themes.googleusercontent.com/static/fonts/play/v2/-SXnV4mZjf4oh1IBw13WZw.woff') format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url('http://themes.googleusercontent.com/static/fonts/opensans/v5/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff') format('woff');
}

我复制并粘贴上面的css代码在我的CSS for fonts support.in IE8 Alone不支持的字体.对此有什么解决方法吗?

复制CSS时它停止工作的原因是Google根据发出请求的用户代理发回不同的CSS.

The CSS returned for IE is different到您复制的CSS.

因此,如果您使用的是Google网络字体,请按照建议使用< link href .. 如果要在本地托管字体,请阅读:How to host google web fonts on my own server?

网友评论