在CSS中,可以使用font-weight
屬性來控制文字的粗細,可以通過設(shè)置font-weight
為較小的值(如100、200、300等)來使文字變得更細,以下是一些示例代碼:
示例1:設(shè)置文字粗細為100
p { font-weight: 100; }
示例2:設(shè)置文字粗細為200
p { font-weight: 200; }
示例3:設(shè)置文字粗細為300
p { font-weight: 300; }
示例4:使用lighter
關(guān)鍵字設(shè)置文字為***細
p { font-weight: lighter; }
示例5:使用bold
關(guān)鍵字設(shè)置文字為***粗
p { font-weight: bold; }
示例6:使用normal
關(guān)鍵字設(shè)置文字為正常粗細
p { font-weight: normal; }
示例7:使用inherit
關(guān)鍵字繼承父元素的文字粗細設(shè)置
p { font-weight: inherit; }
示例8:使用initial
關(guān)鍵字將文字粗細重置為初始值(通常為normal)
p { font-weight: initial; }
示例9:使用unset
關(guān)鍵字將文字粗細重置為未設(shè)置狀態(tài)(即瀏覽器默認行為)
p { font-weight: unset; }