ホームページ > 記事 > ウェブフロントエンド > CSSの取り消し線の色を設定する方法
CSS では、text-decoration 属性で取り消し線の色を設定できます。設定ステートメントは "text-decoration: line-through red;" のようになります。ここで red パラメータは、取り消し線の色を表します。取り消し線。
この記事の動作環境: Windows7 システム、css3 バージョン、DELL G3 コンピューター
text-decoration 属性は、テキストに追加される変更を指定します。テキスト、下線、上線、取り消し線など。
text-decoration 属性は、次の 3 つの属性の省略形です。
text-decoration-line text-decoration-color text-decoration-style
Syntax
/*关键值*/ text-decoration: none; /*没有文本装饰*/ text-decoration: underline red; /*红色下划线*/ text-decoration: underline wavy red; /*红色波浪形下划线*/ text-decoration: line-through red; /*红色删除线*/ /*全局值*/ text-decoration: inherit; text-decoration: initial; text-decoration: unset;
Attribute value
none デフォルト。標準を定義するテキスト。
underline テキストの下の線を定義します。
overline はテキスト上の線を定義します。
line-through は、テキストの下を通過する線を定義します。
blink は点滅するテキストを定義します。
inherit は、text-decoration 属性の値を親要素から継承することを指定します。
推奨学習: 「css ビデオ チュートリアル 」
以上がCSSの取り消し線の色を設定する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。