gpt4 book ai didi

javascript - 我可以使用跨平台、跨浏览器关键字来指代系统字体吗?

转载 作者:行者123 更新时间:2023-11-30 09:18:04 27 4
gpt4 key购买 nike

是否有跨平台。我可以使用跨浏览器关键字来引用 CSS 中的用户系统字体吗?

Apple 提供了一个引用操作系统字体的-apple-system

.myStyle {
font-family: -apple-system; /* works on OSX */
font-family: -system;
}

更多信息:
Using the system font in web content
System fonts

最佳答案

不,据我所知不是,但有解决方案

/* System Fonts as used by GitHub */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

/* Define the "system" font family */
@font-face {
font-family: system;
font-style: normal;
font-weight: 300;
src: local(".SFNSText-Light"), local(".HelveticaNeueDeskInterface-Light"), local(".LucidaGrandeUI"), local("Ubuntu Light"), local("Segoe UI Light"), local("Roboto-Light"), local("DroidSans"), local("Tahoma");
}

/* Now, let's apply it on an element */
body {
font-family: "system";
}

来源:https://css-tricks.com/snippets/css/system-font-stack/

关于javascript - 我可以使用跨平台、跨浏览器关键字来指代系统字体吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53666735/

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