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

css怎麼把字型加粗加大

王林
王林原創
2020-11-17 14:48:258672瀏覽

css把字體加粗加大的方法:可以用font-weight屬性來實現,如【font-weight: bold;】。 font-weight屬性用於設定文字的粗細,bold用來定義粗體字元。

css怎麼把字型加粗加大

相關屬性:

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教程

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

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