对于我的客户,我正在使用Times New Roman字体构建网站。
除Android设备(移动设备,平板电脑)外,一切似乎都运行良好。 Android没有Times New Roman字体。据我所知,你只能使用Droid Serif字体,它的外观与Times不同。除此之外,字体大小也不同,并导致很多对齐问题。
有没有办法使用Times New Roman for Android?我知道fontface,但没有任何免费的webfont可用于Times New Roman。也许它有一个(可接受的)等价物?
提前致谢!
答案 0 :(得分:2)
CSS
@font-face {
font-family: 'Times New Roman';
src: url(LiberationSerif-Regular.ttf) format('truetype');
}
@font-face {
font-family: 'Times New Roman';
src: url(LiberationSerif-Italic.ttf) format('truetype');
font-style: italic;
}
@font-face {
font-family: 'Times New Roman';
src: url(LiberationSerif-Bold.ttf) format('truetype');
font-weight: bold;
}
@font-face {
font-family: 'Times New Roman';
src: url(LiberationSerif-BoldItalic.ttf) format('truetype');
font-style: italic;
font-weight: bold;
}
Download the Liberation Serif .ttf font,解压缩文件并将其移动到webroot。 您可以更改@ font-face源url,并将字体移动到所需位置。