text-underline-position 【下線の表示位置】

[IE5] [IE6] [IE7]

text-underline-positionプロパティは、Internet Explorerが独自に採用したもので、下線の表示位置を指定する事が出来ます。

above
下線をテキストの上に表示します。

below
下線をテキストの下に表示します。

text-underline-positionの使用例

CSSファイル

.tsp028 {
 text-decoration: underline;
 text-underline-position: above;
}
.tsp029 {
 text-decoration: underline;
 text-underline-position: below;
}

HTMLソース

<p class="tsp028">
text-underline-positionプロパティ使用例<br />
下線をテキストの上に表示します。
</p>

<p class="tsp029">
text-underline-positionプロパティ使用例<br />
下線をテキストの下に表示します。
</p>

表示すると

text-underline-positionプロパティ使用例
下線をテキストの上に表示します。

text-underline-positionプロパティ使用例
下線をテキストの下に表示します。

テキスト関連項目

color テキストカラーを指定する 
text-align 行揃えの位置・均等割付を指定する 
vertical-align 縦方向の揃え位置を指定する 
line-height 行の高さを指定する 
text-indent 一行目のインデント幅を指定する 
text-decoration テキストの下線・上線・打ち消し線・点滅の指定 
text-transform テキストの大文字表示・小文字表示を指定する 
white-space ソース中の空白・Tab・改行の表示の仕方を指定 
letter-spacing 文字の間隔を指定する 
word-spacing 単語の間隔を指定する 
text-justify 均等割付の形式を指定する(IE独自) 
text-underline-position 下線の表示位置を指定する(IE独自) 
text-autospace アルファベット等との間隔を指定(IE独自) 
line-break 禁則処理の指定をする(IE独自) 
word-break 文の改行の仕方について指定する(IE独自) 
word-wrap 単語の途中での改行処理の仕方を指定する(IE独自) 
text-shadow※ 文字に影をつける 

戻る

TOP