gpt4 book ai didi

css - 如何将 font-weight 与 font-face 字体一起使用?

转载 作者:技术小花猫 更新时间:2023-10-29 10:09:53 25 4
gpt4 key购买 nike

我有两个字体文件,例如:FONT-light 和 FONT-bold。两者都来自@font-face 工具包,因此每个版本都包含大约 5 个字体文件(OGV、TTF、WOFF、EOT)。

要从浅色版本到粗体版本,我必须使用 font-family: FONT-light; 然后是 font-family: FONT-bold;。我想使用 font-weight: light;font-weight: bold; 因为我需要它到 CSS3 过渡。我该如何实现?

最佳答案

@font-face {
font-family: 'DroidSerif';
src: url('DroidSerif-Regular-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'DroidSerif';
src: url('DroidSerif-Italic-webfont.ttf') format('truetype');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'DroidSerif';
src: url('DroidSerif-Bold-webfont.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'DroidSerif';
src: url('DroidSerif-BoldItalic-webfont.ttf') format('truetype');
font-weight: bold;
font-style: italic;
}

来自教程:http://www.456bereastreet.com/archive/201012/font-face_tip_define_font-weight_and_font-style_to_keep_your_css_simple/

关于css - 如何将 font-weight 与 font-face 字体一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10045859/

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