在css中,字體設定為bold是設定字體樣式為粗體的意思;bold是「font-weight」的屬性值,該屬性用於設定文字的粗細,屬性值設定為bold表示定義粗體字符,語法為「元素{font-weight: bold}」。
本教學操作環境:windows10系統、CSS3&&HTML5版本、Dell G3電腦。
bold是font-weight的屬性值。
font-weight 屬性設定文字的粗細。
此屬性用於設定顯示元素的文字中所使用的字體加粗。數字值 400 相當於 關鍵字 normal,700 等價於 bold。每個數字值對應的字體加粗必須至少與下一個最小數字一樣細,而且至少與下一個最大數字一樣粗。
normal 預設值。定義標準的字元。
bold 定義粗體字元。
bolder 定義較粗的字元。
lighter 定義更細的字元。
數值定義由粗到細的字元。 400 等同於 normal,而 700 等同於 bold。
範例如下:
<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字體設定為bold的是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!