text-decorationは、テキストを装飾するプロパティです。
下線や打ち消し線などをつけることができます。
| 
 1 2 3 4  | 
 text-decoration: none; text-decoration: underline; text-decoration: overline; text-decoration: line-through;  | 
| 
 プロパティ名  | 
 値  | 
 説明  | 
| 
 text-decoration  | 
 none  | 
 装飾なし (初期値)  | 
| 
 underline  | 
 テキストに下線を引く  | 
|
| 
 overline  | 
 テキストに上線を引く  | 
|
| 
 line-through  | 
 テキストに取り消し線を引く  | 
|
| 
 blink  | 
 テキストを点滅させる  | 
値の指定例
このプロパティでは、複数の値を同時に指定することができます。次のように、半角スペースで区切って記述します。
text-decoration: underline overline;