css把字體加粗加大的方法:可以用font-weight屬性來實現,如【font-weight: bold;】。 font-weight屬性用於設定文字的粗細,bold用來定義粗體字元。
相關屬性:
font-weight 屬性設定文字的粗細
(學習影片分享:css影片教學)
屬性值:
normal 預設值。定義標準的字元。
bold 定義粗體字元。
bolder 定義較粗的字元。
lighter 定義更細的字元。
inherit 規定應該從父元素繼承字體的粗細。
程式碼範例:
<html> <head> <style type="text/css"> p.normal {font-weight: normal} p.thick {font-weight: bold;font-size:250%;} p.thicker {font-weight: 900;font-size:200%;} </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中文網其他相關文章!