gpt4 book ai didi

css - 如何使此 Google 字体在 Internet Explorer 11 上工作

转载 作者:技术小花猫 更新时间:2023-10-29 11:02:29 24 4
gpt4 key购买 nike

我在我的网站上使用了 Montserrat 字体,但它在 IE11 (windows 7) 上不显示。我几天前提出了另一个问题:Montserrat font isn't displayed on IE 10 and 11

现在我正尝试通过 css 添加 Montserrat google 字体,但它似乎不起作用。这是我的代码:

@font-face {
font-family: 'Montserrat';
src: url('assets/fonts/montserrat-regular-webfont.eot');
src: url('assets/fonts/montserrat-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/montserrat-regular-webfont.woff2') format('woff2'),
url('assets/fonts/montserrat-regular-webfont.woff') format('woff'),
url('assets/fonts/montserrat-regular-webfont.ttf') format('truetype'),
url('assets/fonts/montserrat-regular-webfont.svg#montserratregular') format('svg');
font-weight: normal;
font-style: normal;

}

最佳答案

使用:

@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);

在您的样式表中调用它并且:

font-family: 'Montserrat', sans-serif;

为了制作那种字体..

来自 google fonts:“注意:为了在 IE 中获得最佳显示效果,请将样式表标记作为 HTML 部分中的第一个元素。在 IE 中,如果链接放在标记之后,整个页面将被阻塞并且不会显示任何内容,直到字体已加载。”

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

如果这不起作用,试试这个:https://developers.google.com/fonts/docs/webfont_loader#Example

这将使每个浏览器“表现得像 Firefox”。

关于css - 如何使此 Google 字体在 Internet Explorer 11 上工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26731808/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com