【发布时间】:2012-11-08 00:57:35
【问题描述】:
在 Android 手机上的 Chrome 浏览器中,@font-face 未正确呈现 http://dev.belugalab.com/btm 处徽标下的 3 个字。但是,相同的字体似乎在页脚中起作用。我不确定这是否与 font-face 有关,但这是我最好的猜测。这是 Android Chrome 上发生的情况的屏幕截图:http://imm.io/MgE0
CSS:
@font-face {
font-family:'intro_regular';
src: url('fonts/intro-webfont.eot');
src: url('fonts/fonts/intro-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/intro-webfont.woff') format('woff'),
url('fonts/intro-webfont.ttf') format('truetype'),
url('fonts/intro-webfont.svg#intro_regular') format('svg');
font-weight: normal;
font-style: normal
}
h2 {
font-family:'intro_regular';
font-size:31px;
font-weight:400;
color:#fff;
background:#000;
display:inline-block;
height:30px;
margin:3px 0 4px 39px;
line-height:30px;
padding:0 4px
}
【问题讨论】:
标签: android google-chrome css font-face