我试图在Xbox 360上的IE9上加载字体。它在普通的Windows 7 / Internet Explorer 9盒子上工作得很好,但在Xbox上却没有。任何人都知道获取字体的技巧是什么?
@font-face {
font-family: "Gotham";
src: url("../fonts/Gotham-Medium.eot") format("embedded-opentype"), url("../fonts/Gotham-Medium.otf") format("opentype"), url("../fonts/Gotham-Medium.woff") format("woff"), url("../fonts/Gotham-Medium.ttf") format("truetype"), url("../fonts/Gotham-Medium.svg#Gotham") format("svg");
font-weight: normal;
font-style: normal;
}
body {
font-family: "Gotham";
}
- 更新 -
我尝试删除除woff和ttf之外的所有字体格式:
@font-face {
font-family: "Gotham";
src: url("../fonts/Gotham-Medium.woff") format("woff"), url("../fonts/Gotham-Medium.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
但是IE9仍然向我展示了新的罗马字体。