gpt4 book ai didi

css - 将 !important 放在 @font-face 上有效吗?

转载 作者:行者123 更新时间:2023-11-28 10:18:16 25 4
gpt4 key购买 nike

我有一个问题,我希望用户强制使用网络字体而不是他计算机上安装的字体,因为它们的格式略有不同。我查找了 !important 但我不确定,当我尝试它时我不知道它是否有效。这里有人可以告诉我如何在 @font-face 上使用 !important 吗?是否有效?

最佳答案

所以像这样:

CSS

@font-face {
font-family: 'custom-font';
src: url('custom-font.eot');
src: url('custom-font.eot?#iefix') format('embedded-opentype'),
url('custom-font.woff') format('woff'),
url('custom-font.ttf') format('truetype'),
url('custom-font.svg#custom') format('svg');
font-weight: normal;
font-style: normal;

}



p { font-family: 'custom-font', Arial, sans-serif; }

HTML

<p>Your text here</p>

关于css - 将 !important 放在 @font-face 上有效吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17236564/

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