我下载了这个字体
这就是我将它包含到我的样式表中的方式:
@font-face {
font-family: "surface";
src: url(fonts/Surface-Medium.otf);
}
这就是我使用它的方式:
#site-header .site-logo a {
color: #00B1ED;
font-family: "surface";
font-size: 40px;
font-weight: bold;
letter-spacing: -1.5px;
text-shadow: 0 1px 5px #000000;
text-transform: capitalize;
}
#site-header .site-logo a span {
color: white;
}
#site-header .site-logo a span:last-child {
font-size: 22px;
}
问题是在 google chrome 中它呈现得非常糟糕:
但在 Firefox 中效果很好:
我做错了什么吗?