#この記事の動作環境: Windows10 システム、css 3、thinkpad t480 コンピューター。 太字のフォント効果を実現するには、テキストの太さを設定できる font-weight 属性を使用します。 属性値:CSS でフォントの太字効果を設定する方法は、フォントに font-weight 属性を追加し、属性値を [font-weight:bolder] や [font-weighter] などの太字または太字に設定することです。重量:太字]。
<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でフォントの太字効果を設定する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。