字体在IE上不显示
The font is not displayed on IE
@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 */
}
@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 */
}