与其他人一样,我在使用InternetExplorer中的自定义字体时遇到问题。现在,我已经看到了关于这个主题的一些线程,所有这些线程最终都在一个解决方案中,我不仅需要嵌入trueType字体(这对所有其他主流浏览器来说已经足够了),但建议使用类似的东西:< / p>
@font-face {
font-family: "LCD";
src: url('/Public/Fonts/quartz_regular-webfont.eot');
src: url('/Public/Fonts/quartz_regular-webfont.eot?#iefix') format('embedded- opentype'),
url('/Public/Fonts/quartz_regular-webfont.woff') format('woff'),
url('/Public/Fonts/quartz_regular-webfont.ttf') format('truetype'),
url('/Public/Fonts/quartz_regular-webfont.svg#quartzregular') format('svg');
font-weight: normal;
font-style: normal;
}
有人可以向我解释为什么InternetExplorer需要我的字体在trueType,webFont,svg和embeddedOpentype才能工作?这样的麻烦...