#この記事の動作環境: Windows10 システム、css 3、thinkpad t480 コンピューター。 テキスト内の下線スタイルをキャンセルしたい場合は、属性 text-decoration: none を設定できます。以下に text-decoration 属性を導入しましょう。 text-decoration 属性は、下線、上線、取り消し線など、テキストに追加される装飾を指定します。CSS で下線スタイルを削除する方法は、属性 [text-decoration: none;] を設定することです。赤い波線などのスタイルをテキストに追加したい場合は、属性 [text-decoration:underline red;] を設定できます。
text-decoration: none; /*没有文本装饰*/ text-decoration: underline red; /*红色下划线*/ text-decoration: underline wavy red; /*红色波浪形下划线*/
h1.under { text-decoration: underline; } h1.over { text-decoration: overline; } p.line { text-decoration: line-through; } p.blink { text-decoration: blink; } a.none { text-decoration: none; } p.underover { text-decoration: underline overline; }
以上がCSSの下線スタイルを削除する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。