我正在为我的页面使用谷歌网络字体,但我在 Chrome 中得到了与 Firefox 不同的结果。Firefox 的结果是正确的,我不知道 Chrome 为什么会出现这个问题。
代码很简单
intro { font-family: 'Open Sans Condensed', sans-serif; font-size:33px; line-height:38px; color: #404040;}
logo { font-family: 'Open Sans', sans-serif; }
<link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300italic&subset=greek' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:600&subset=greek,latin' rel='stylesheet' type='text/css'>
<logo>Logo goes here</logo>
<br><br>
<intro>Text goes right here</intro>
或者您可以在http://jsfiddle.net/KSVTA/或http://fiddle.jshell.net/KSVTA/show/中看到Chrome 不使用 Open Sans Condensed。
为什么会这样,我该如何解决?