gpt4 book ai didi

android - 使用 CSS 字体系列选择不适用于 Android 的 Droid 字体

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:18:40 27 4
gpt4 key购买 nike

我发现以下 HTML 代码在 Android 上不起作用(它只会使用默认字体:Droid Sans。在桌面上它按预期工作。

<p style='font-family: "Droid Sans",sans-serif;'>vând whisky și tequila, preț fix.</p>
<p style='font-family: "Droid Sans Mono",monospace;'>vând whisky și tequila, preț fix.</p>
<p style='font-family: "Droid Serif",serif;'>vând whisky și tequila, preț fix.</p>

最佳答案

您的 css 中可能没有针对其他字体的 @font-face 声明。我想你只有一个 Droid Sans。每种字体都需要一个。例如,在你的 css 中你应该有:

@font-face {
font-family: 'DroidSans';
src: url('font/DroidSans-webfont.eot?') format('eot'),
url('font/DroidSans-webfont.woff') format('woff'),
url('font/DroidSans-webfont.ttf') format('truetype'),
url('font/DroidSans-webfont.svg#webfontw7zqO19G') format('svg');
font-weight: normal;
font-style: normal;

}

@font-face {
font-family: 'DroidSansMono';
src: url('font/DroidSans-Mono-webfont.eot?') format('eot'),
url('font/DroidSans-Mono-webfont.woff') format('woff'),
url('font/DroidSans-Mono-webfont.ttf') format('truetype'),
url('font/DroidSans-Mono-webfont.svg#webfontSOhoM6aS') format('svg');
font-weight: normal;
font-style: normal;

}

@font-face {
font-family: 'DroidSerif';
src: url('font/DroidSerif-webfont.eot?') format('eot'),
url('font/DroidSerif-webfont.woff') format('woff'),
url('font/DroidSerif-webfont.ttf') format('truetype'),
url('font/DroidSerif-webfont.svg#webfontw7zqO19G') format('svg');
font-weight: normal;
font-style: normal;

}

然后在您的代码中,您的字体系列应该与您在上面的 css 中声明的字体系列相同(即 font-family: 'Droid Sans';与 font-family: 'DroidSans' 不同)

<p style='font-family: "DroidSans",sans-serif;'>vând whisky și tequila, preț fix.</p>
<p style='font-family: "DroidSansMono",monospace;'>vând whisky și tequila, preț fix.</p>
<p style='font-family: "DroidSerif",serif;'>vând whisky și tequila, preț fix.</p>

试一试,看看效果如何。

关于android - 使用 CSS 字体系列选择不适用于 Android 的 Droid 字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5078008/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com