我在 IE10 中正确显示以下代码时遇到问题。我对它无法在 IE9 中运行这一事实感到满意,但根据 caniuse.com 连字(和真实类型)应该在 IE10 中按预期运行。是否需要特殊规则才能完成这项工作?
这是相关的HTML:
<body>
<nav role = "navigation" class = "nav">
<ul>
<li>
<a href="#branches" class="selected">home</a>
</li>
<li >
<a href="#trees">mobile</a>
</li>
<li>
<a href="#path">portfolio</a>
</li></li>
<li><
a href="#power">power</a>
</li>
</ul>
</nav>
这是CSS:
@font-face {
font-family: "ui";
src: url("../fonts/Live-Share-UI.eot");
src: url("../fonts/Live-Share-UI.svg") format("svg");
src: url("../fonts/Live-Share-UI.ttf");
font-feature-settings: "dlig" 1; }
.nav, .header {
font-family: ui;
position: fixed;
text-align: center;
z-index: 50;
top: 0;
bottom: 0;
left: 0;
margin: auto auto 1em auto;
right: 0;
height: 1.5em; }
这是一个更大的项目的摘录,可以在live_share_test.aws.af.cm看到
这目前适用于 Windows 上的 Chrome 版本 27.0.1453.94 m、Opera v 12、Firefox 19.0.2 以及当前在 iPhone 4 上安装的 Safari。