Roboto-Regular 字体中的某些字符是否存在问题,如果字体大小为 14 像素,仅适用于 Windows 操作系统?特别是,字母“e”不清楚。当字体更改为 13px 时,这个 font-family 中的每个字母都清晰地出现了。
问问题
128 次
1 回答
0
尝试在 CSS 中使用 SVG 字体。
@font-face {
font-family: ‘MyWebFont’;
src: url(‘webfont.eot’);
src: url(‘webfont.eot?#iefix’) format(‘embedded-opentype’),
url(‘webfont.woff’) format(‘woff’),
url(‘webfont.ttf’) format(‘truetype’),
url(‘webfont.svg#svgFontName’) format(‘svg’);
}
于 2018-07-02T09:42:55.870 回答