#この記事の動作環境: Windows10 システム、css 3、thinkpad t480 コンピューター。 テキストの太字効果を削除したい場合、実際には非常に簡単です。font-weight:normal を設定するだけです。このプロパティを一緒に見てみましょう。 font-weight プロパティはテキストの太さを設定します。 属性値:CSS でフォントの太字効果を削除する方法は、フォントに font-weight 属性を追加し、その属性値を [p.normal {font-weight:normal;} のように標準に設定することです。 ]、normal は標準文字を定義します。
<!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でフォントの太字効果を削除する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。