Html 样式字体系列是否按顺序排列优先级?

发布于 2024-07-24 11:00:45 字数 243 浏览 1 评论 0原文

<span style="font-family: 'Segoe UI', Tahoma, Arial, Helvetica, sans-serif;">
    content
</span>

这是否意味着客户端上将有一个指定字体系列的优先级列表,即如果没有“Segoe UI”会检查 Tahoma,则 Tahoma 不会检查 Arial 等?

回答“是”或“否”就足够了!

<span style="font-family: 'Segoe UI', Tahoma, Arial, Helvetica, sans-serif;">
    content
</span>

Does this mean that there is going to be a priority list for the specified font families on the client, i.e. if no 'Segoe UI' will check for Tahoma, no Tahoma will go for Arial and so on?

Answer with YES or NO will be good enough!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

零度℉ 2024-07-31 11:00:45

对,那是正确的!

Yes, that is correct!

太阳男子 2024-07-31 11:00:45

简短回答:是的。

更长的答案:您是否宁愿使用样式表而不是像这样内联嵌入样式?

Short answer: Yes.

Longer answer: Wouldn't you rather use a stylesheet than embed styles inline like this?

灰色世界里的红玫瑰 2024-07-31 11:00:45

是的
如果浏览器不支持第一种字体,则会转而使用另一种字体。 通过列出几种字体,您可以确保客户获得您想要的字体。
如果你想下载字体样式,那么你可以使用谷歌字体。

这就是获得自定义字体的方法。

.parent {
  font-family: Tahoma;
}

Yes
If the browser doesn't support the first font then it goes to another. By listing out several fonts you can ensure that the client gets the font you want.
If you want to download a font style, then you can use google fonts.

This is how you get a custom font.

.parent {
  font-family: Tahoma;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文