アンダーラインや取消し線など、テキストの装飾を指定します。
IE3 / IE4 / IE5 / IE5.5 / IE6 / N4 / N6 / N7 / O6 / O7 / O9 / Fx1 / Fx2 / IE5 mac
要素[.class名][#id名]{ text-decoration : 値; }
値 | 初期値 | 意味 |
none | ○ | 何も付加されません。 |
underline | テキストにアンダーラインが付加されます。 | |
overline | テキストにオーバーラインが付加されます。 | |
line-through | テキストに取消し線が付加されます。 | |
blink | テキストを点滅させます。(IE未対応) | |
inherit | 親要素の値を継承します。 |
<html> <head> <title>サンプルコード</title> <style type="text/css"> #sample1 { text-decoration : none; } #sample2 { text-decoration : underline; } #sample3 { text-decoration : overline; } #sample4 { text-decoration : line-through; } #sample5 { text-decoration : blink; } </style> </head> <body> <div id="sample1">text-decoration : noneサンプル</div> <br> <div id="sample2">text-decoration : ndelineサンプル</div> <br> <div id="sample3">text-decoration : overlineサンプル</div> <br> <div id="sample4">text-decoration : line-throughサンプル</div> <br> <div id="sample5">text-decoration : blinkサンプル</div> </body> </html>