我已经使用Lato Google Font开发了一个网站。 Chrome一切正常,但是当我使用Firefox时,字体损坏了,而是改为使用Times New Roman字体。

奇怪的是,当我打开https://www.google.com/fonts/specimen/Lato时,我确实得到了Lato Font。所以我的猜测是我的代码有问题。

该网站是http://www.okaprix.com/
这是我使用Lato Font编写的CSS代码:

/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url(http://fonts.gstatic.com/s/lato/v11/UyBMtLsHKBKXelqf4x7VRQ.woff2) format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url(http://fonts.gstatic.com/s/lato/v11/1YwB1sO8YE1Lyjf12WNiUA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
body {
font-family : Lato;
margin : 0 auto;
height : 100%;
font-size: 16px;
min-width:1066px;
}

最佳答案

那不是您实现Google字体的方式。在页面的head中使用以下标记:

<link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>


然后,只需在样式表中指定Lato。

关于html - Firefox中的Lato字体损坏,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31158847/

10-12 13:50