css設定字體粗體效果的方法是,為字體新增font-weight屬性,並將屬性值設為bold或bolder,例如【font-weight:bolder】或【font-weight:bold】 。
本文操作環境:windows10系統、css 3、thinkpad t480電腦。
要實現字體粗體效果,我們可以利用font-weight 屬性來實現,該屬性可以設定文字的粗細。
屬性值:
normal 預設值。定義標準的字元。
bold 定義粗體字元。
bolder 定義較粗的字元。
lighter 定義更細的字元。
範例:
<html> <head> <style type="text/css"> p.normal {font-weight: normal} p.thick {font-weight: bold} p.thicker {font-weight: 900} </style> </head> <body> <p class="normal">This is a paragraph</p> <p class="thick">This is a paragraph</p> <p class="thicker">This is a paragraph</p> </body> </html>
執行效果:
#相關推薦:css影片教學
以上是css怎麼設定字體粗體效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!