首頁  >  文章  >  web前端  >  css中怎麼把文字加粗

css中怎麼把文字加粗

王林
王林原創
2021-05-20 13:48:276884瀏覽

css中把文字加粗的方法是,給文字設定font-weight屬性,並且設定屬性值為bolder,例如【p.thick {font-weight:bolder;}】,bolder表示比較粗的文本。

css中怎麼把文字加粗

本文操作環境:windows10系統、css 3、thinkpad t480電腦。

如果我們要把文字加粗,可以使用css中的font-weigth屬性來實現,下面讓我們一起來了解下該屬性。

font-weight 屬性設定文字的粗細。

常用屬性值:

  • normal    預設值。定義標準的字元。   

  • bold    定義粗體字元。   

  • bolder    定義較粗的字元。   

  • lighter    定義更細的字元。

程式碼範例:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title></title>
<style>
p.normal {font-weight:normal;}
p.light {font-weight:lighter;}
p.thick {font-weight:bold;}
p.thicker {font-weight:900;}
</style>
</head>

<body>
<p class="normal">This is a paragraph.</p>
<p class="light">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影片教學

以上是css中怎麼把文字加粗的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn