gpt4 book ai didi

html - 有没有办法将字体添加到 Assets 文件夹中并为 html 加载它?

转载 作者:太空宇宙 更新时间:2023-11-04 09:34:15 27 4
gpt4 key购买 nike

我希望我的文字在 web view 中看起来更好但是当我尝试为它加载字体时,它没有改变。根据一些问题thisthis我找到了这段代码:

<style type="text/css">
@font-face {
font-family: "My Custom Font";
src: url(http://www.example.org/mycustomfont.ttf) format("truetype");
}
p.customfont {
font-family: "My Custom Font", Verdana, Tahoma;
}
</style>
<p class="customfont">Hello world!</p>

我试过从 Assets 加载它:

<style type=text/css>
@font-face {
font-family: "ROYA";
src="Roya.ttf";
}
p.customfont {
font-family: "ROYA", Verdana, Tahoma;
}
<p class="ROYA">Hello world!</p>

但它不起作用。我该怎么办?

最佳答案

使用 : 代替或 =

@font-face{
font-family: "ROYA";
src: url("Roya.ttf") format("truetype");
}

并在下一个代码块中更改类名

p.ROYA { 
font-family: "ROYA", Verdana, Tahoma;
}
<p class="ROYA">Hello world!</p>

关于html - 有没有办法将字体添加到 Assets 文件夹中并为 html 加载它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40496680/

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