CSSテキスト - 文字の装飾設定 | text-decoration
2008/05/28 11:37Update
本文はテキスト関連のCSS属性の text-decoration(文字の装飾:下線・上線・打ち消し線・点滅の設定) について学びたいと思います。
text-decoration属性
CSSのtext-decoration属性は、文字の装飾を設定します。
text-decoration属性の値
◇ none: デフォルト設定。
◇ underline: テキストに下線を引きます
◇ overline: テキストに上線を引きます
◇ line-through: テキストの中央に打ち消し線を引きます
◇ blink: テキストを点滅させます。Netscape, Firefox, Operaが対応、IEは未対応。
例:
p.uline {
text-decoration: underline;
}
#oline {
text-decoration: overline;
}
text-decoration属性の使用例
◇ text-decoration : normal;
下線を引く
◇ text-decoration: overline;
上線を引く
◇ text-decoration: line-through;
打ち消し線を引く
◇ text-decoration: blink;(IE未対応)
点滅させる
◇ text-decoration: underline overline;
下線と上線を引く
◇ コード:
<p style="text-decoration: underline;color:blue"><span style="color:black;">線の色の設定</span></p>
線の色の設定
Sponsored Link
- Relative Articles
- CSSテキスト関連プロパティ概要 - (2008/05/27 22:34)
- CSSテキスト - 行の高さの指定 | line-height - (2008/05/27 23:28)
- CSSテキスト - 水平方向の揃え方設定 | text-align - (2008/05/28 10:50)
- CSSテキスト - 文字の間隔設定 | letter-spacing - (2008/05/28 11:06)
- CSSテキスト - 文字のインデント設定 | text-indent - (2008/05/28 13:04)
- CSSテキスト - 文字の大文字・小文字の表示設定 | text-transform - (2008/05/28 13:21)
- CSSテキスト - 単語の間隔設定 | word-spacing - (2008/05/28 14:42)
- CSSテキスト - 空白文字の表示方法設定 | white-space - (2008/05/28 15:23)
- CSSサンプル - CSSを使ったテキストの回転 - (2010/10/06 22:49)
- Photoshopのような金属の質感がある文字をCSSで作り出す - (2008/11/26 23:04)