【CSS】「text-decoration」プロパティ - テキストに加えるで装飾を設定する
【CSS】
「text-decoration」プロパティ - テキストに加えるで装飾を設定する
text-decoration - テキストに加えるで装飾を設定する
記述例:
text-decoration:none;
text-decoration:underline;
text-decoration:overline;
text-decoration:line-through;
text-decoration:underline solid;
text-decoration:underline double;
text-decoration:underline dotted;
text-decoration:underline dashed;
text-decoration:underline wavy;
text-decoration:underline red;
text-decoration:blink;
text-decorationの値一覧
none | 下線などを表示しない。 |
underline | 下線を表示。 |
overline | 上線を表示。 |
line-through | 打ち消し線を表示。 |
solid | 実線 |
double | 二重線 |
dotted | 点線 |
dashed | 破線 |
wavy | 波線 |
color | 線の色を指定 |
blink | テキストを点滅。 |
Back