在CSS中,我們可以使用font-weight
屬性來加粗文字,該屬性的值可以是bold或number,數字越大粗細程度越高。
p { font-weight: bold; } /* 或者 */ p { font-weight: 700; }
另外,我們也可以使用<strong>標簽來加粗文本,該標簽會默認添加粗體樣式。
<p>這是一段<strong>加粗</strong>的文本。</p>
如果想要讓文字更突出,可以結合使用font-weight
屬性和text-shadow
屬性,使得加粗的文字產生更明顯的陰影,進而突出重點。
p { font-weight: bold; text-shadow: 1px 1px #000; }