Google字体在实时服务器上运行,但在localhost

时间:2017-03-28 21:11:47

标签: html css fonts google-fonts

我的谷歌字体在我的实时网站上显示正常,但在本地主机上的制作中,它们的显示方式不同。更多四四方方/标准,但与标准字体不一样。

他们如何在localhost上显示:

How they show on localhost

它们如何在实时服务器上显示(这是我想要的):

How they show on live server

这是我的CSS:

@import url('https://fonts.googleapis.com/css?family=Droid+Sans|Caveat+Brush');

body{ 
  font-family: "Droid Sans", sans-serif; //'projects'
}
#title {
  font-family: 'Caveat Brush', cursive; //'Junior Web Developer'
}

我正在使用gulpbrowser-sync,但直接从浏览器打开html文件会遇到同样的问题

1 个答案:

答案 0 :(得分:0)

将@import代码移到CSS文件的最顶层,高于其他所有内容。

@import url('https://fonts.googleapis.com/css?family=Droid+Sans|Caveat+Brush');