在Firefox中破坏的Lato字体

时间:2015-07-01 10:31:02

标签: html css firefox fonts

我使用Lato Google Font开发了一个网站。一切都可以正常使用Chrome,但是当我使用Firefox时,字体会被破坏,而我会得到Times New Roman字体。

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

该网站为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;
}

1 个答案:

答案 0 :(得分:2)

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

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

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