CSSWeb制作メモ

text-decorationのスタイル

線の位置

テキストの下部に線が表示される

text-decoration: underline;
テキストの上部に線が表示される

text-decoration: overline;
テキストに取り消し線が表示される

text-decoration: line-through;

線の色

テキストの線の色が赤になる

	text-decoration: underline;
	text-decoration-color: red;

線の太さ

テキストの線の太さが10pxになる

text-decoration: underline;
	text-decoration-thickness: 10px;

テキストと線の距離

テキストと線の距離が15pxになる

	text-decoration: underline;
	text-underline-offset: 15px;

線を文字が被ったときの表示(半角英字:g j p q y)

テキストと線が被ったときに線が消える(abcdefghijkmlnopqrstuvwxyz

	text-decoration: underline;
	text-decoration-color: red;
	text-decoration-thickness: 5px;
	text-decoration-skip-ink: none;
テキストと線が被ったときに線が消える(abcdefghijkmlnopqrstuvwxyz

	text-decoration: underline;
	text-decoration-color: red;
	text-decoration-thickness: 5px;
	text-decoration-skip-ink: auto;

参考ページ