📅  最后修改于: 2023-12-03 15:30:09.371000             🧑  作者: Mango
在 CSS 中,font-weight 属性用于设置文本字体的粗细程度。常见的取值为常规的 400 和粗体的 700。
font-weight: normal|bold|bolder|lighter|number|initial|inherit;
p {
font-weight: normal;
}
h1 {
font-weight: bold;
}
h2 {
font-weight: bolder;
}
h3 {
font-weight: lighter;
}
h4 {
font-weight: 700;
}
h5 {
font-weight: 800;
}
h6 {
font-weight: 900;
}