12

对于我的客户,我正在使用 Times New Roman 字体构建一个网站。

一切似乎都运行良好,除了 Android 设备(手机、平板电脑)。Android 没有可用的 Times New Roman 字体。据我所知,您只能使用 Droid Serif 字体,它的外观与 Times 不同。除此之外,字体大小也不同,会导致很多对齐问题。

有什么方法可以在 Android 上使用 Times New Roman 吗?我知道字体,但没有任何可用于 Times New Roman 的免费网络字体。也许有一个(可接受的)等价物?

提前致谢!

4

1 回答 1

4

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;
}

下载 Liberation Serif .ttf 字体,解压缩并将文件移动到 webroot。您可以更改@font-face 源网址并将您的字体移动到您想要的任何地方。

于 2018-07-30T05:44:47.073 回答