我有以下 HTML:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<link href='https://fonts.googleapis.com/css?family=Bitter:400' rel='stylesheet' type='text/css'/>
<style type="text/css">
h1 {
font-family: Bitter;
font-weight: normal;
}
</style>
</head>
<body>
<h1>Why is this different?</h1>
</body>
</html>
在 Windows 7 上的IE9 中查看时,Bitter
字体已正确加载并应用:
但在 Windows 8 上的 IE10 中查看时并非如此,而是使用默认字体 ( Times New Roman
):
由于两个浏览器都使用相同的Document Mode
(因为X-UA-Compatible
元标记),我原以为两者都会使用 Bitter 字体或失败并使用 Times New Roman 字体。但是,一个正在运行(Windows 7 上的 IE9),一个失败(Windows 8 上的 IE10)
这是一个已知问题还是记录在案的功能?