gpt4 book ai didi

html - 如何在 IE9 中使用 font-face 嵌入 Lucida Sans 常规字体

转载 作者:行者123 更新时间:2023-11-28 12:55:02 27 4
gpt4 key购买 nike

我使用 font-face 嵌入了 Lucida Sans 常规字体,它在除 IE9 之外的所有浏览器上都能正常工作。我使用了这样的font-face:

@font-face {
font-family: 'Lucida-Sans-regular';
src: url('../fonts/Lsans.eot');
src: local('Lucida sans'), url('../fonts/Lsans.woff') format('woff'), url('../fonts/Lsans.ttf') format('truetype'), url('../fonts/Lsans.svg') format('svg');
font-weight: normal;
font-style: normal;
}

任何人都可以帮助它在 IE9 上工作吗?

最佳答案

我认为建议执行以下操作:

@font-face {
font-family: 'MyWebFont';
src: url('webfont.eot'); /* IE9 Compat Modes */
src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('webfont.woff') format('woff'), /* Modern Browsers */
url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}

关于html - 如何在 IE9 中使用 font-face 嵌入 Lucida Sans 常规字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16590843/

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