📜  字体粗细 css 代码示例

📅  最后修改于: 2022-03-11 14:47:54.797000             🧑  作者: Mango

代码示例6
/* key word "lighter", "normal", "bold", or "bolder" */ 
.normal {
  font-weight: normal;
}

/* number between 100 and 900 */
.heavy {
  font-weight: 900;
}