Internet Explorer 8中的字体面问题

时间:2015-06-04 17:07:17

标签: css internet-explorer fonts internet-explorer-8 font-face

我为IE 8创建了一个测试页面,看看我是否可以使用Google字体。你可以在问题的最后找到代码。

我通过使用带有列表的元素来包含我需要的每种Google字体。

现在,根据元素中的HREF属性长度,Google字体可能无法在IE 8中运行。

以下是案例:

如果我有:

<link rel=stylesheet type="text/css"
    href="//fonts.googleapis.com/css?family=Tangerine|Open+Sans|Droid+Sans|PT+Sans|Josefin+Slab|Arvo|Lato" />

Google字体无法在IE 8中使用。

现在,如果我删除“Lato”,则指定最后一种字体:

<link rel=stylesheet type="text/css"
    href="//fonts.googleapis.com/css?family=Tangerine|Open+Sans|Droid+Sans|PT+Sans|Josefin+Slab|Arvo" />

Google字体在IE 8中工作。

在两种情况下,它们在Chrome中运行良好,这仅与IE 8相关。

测试页的HTML代码:

<html>
<head>
<link rel=stylesheet type="text/css"
  href="//fonts.googleapis.com/css?family=Tangerine|Open+Sans|Droid+Sans|PT+Sans|Josefin+Slab|Arvo|Lato" />

<style>
div {
  font-size: 36px;
  font-family: 'Tangerine'; /* here is the google font */
}
</style>

</head>
<body>
  <div>This div will get the google font family</div>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

是的,它是IE的问题 - 对于IE8及更低版本 - 一种解决方案是在条件语句中分离出每种字体的链接 - 它不像链接属性中的长字体堆栈跟踪

<!--[if lte IE 8]>
    <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Tangerine" /> 
    <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans" /> 
    <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Droid+Sans" />
<![endif]-->