我正在尝试在网站上使用 androids roboto 字体,它可以正常工作,直到我在文本中收到一个德语字母,然后看起来字体粗细发生了变化。
它的导入是这样的:
@font-face {
font-family: 'RobotoLight';
src: url('Roboto-Light-webfont.eot');
src: url('Roboto-Light-webfont.eot?#iefix') format('embedded-opentype'),
url('Roboto-Light-webfont.woff') format('woff'),
url('Roboto-Light-webfont.ttf') format('truetype'),
url('Roboto-Light-webfont.svg#RobotoLight') format('svg');
font-weight: normal;
font-style: normal;
}
然后看起来像下面这样。
这是字体错误还是css设置?关于如何解决这个问题的任何建议?