gpt4 book ai didi

css - 字体在IE上不显示

转载 作者:行者123 更新时间:2023-11-28 13:56:57 26 4
gpt4 key购买 nike

@font-face {
font-family: 'Museo-Sans';
src: url('../fonts/MuseoSans/MuseoSans-900.otf') format('opentype'),
url('../fonts/MuseoSans/MuseoSans-900.eot'),
url('../fonts/MuseoSans/MuseoSans-900.eot?#iefix') format('embedded-opentype');
font-weight: 900;
font-style: normal;
}

在 Internet Explorer 上不显示。我获取 otf 文件,将其转换为 eot,但在这里我自己添加了第三行。如何正确转换以便文件具有此 ?#iefix

最佳答案

尝试使用 .woff 格式使其在 IE11 中工作

@font-face {
font-family: 'Museo-Sans';
src: url('../fonts/MuseoSans/MuseoSans-900.eot'); /* IE9 Compat Modes */
src: url('../fonts/MuseoSans/MuseoSans-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../fonts/MuseoSans/MuseoSans-900.woff') format('woff'), /* IE 9-11 & Modern Browsers */
url('../fonts/MuseoSans/MuseoSans-900.ttf') format('truetype'), /* Safari, Android, iOS */
url('../fonts/MuseoSans/MuseoSans-900.svg#svgFontName') format('svg'); /* Legacy iOS */
}

关于css - 字体在IE上不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58379650/

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