取消CSS中的加粗設(shè)置,可以通過以下幾種方式實(shí)現(xiàn):
1、使用font-weight
屬性:
在CSS中,font-weight
屬性用于設(shè)置文本的粗細(xì)程度,如果想要取消加粗,可以將font-weight
屬性設(shè)置為normal
或400
。
p { font-weight: normal; }
或者:
p { font-weight: 400; }
2、使用text-decoration
屬性:
text-decoration
屬性用于設(shè)置文本裝飾,如加粗、斜體等,如果想要取消加粗,可以將text-decoration
屬性設(shè)置為none
。
p { text-decoration: none; }
3、使用font-style
屬性:
font-style
屬性用于設(shè)置文本的樣式,如斜體、正常體等,如果想要取消加粗,可以將font-style
屬性設(shè)置為normal
。
p { font-style: normal; }
三種方式都可以取消CSS中的加粗設(shè)置,具體使用哪種方式取決于你的需求。