このウェブサイトはご利用の端末での閲覧に対応していません。
This website does not support your device.

th”要素~“nowrap”属性注意

記事July 25th,2020
セル内のテキストを改行させない属性
この記事はHTML Living Standardに対応しています。
この記事はHTML Living Standardに対応しています。
この属性は現行の仕様では廃止されています。
この属性は現行の仕様では廃止されています。

nowrap”属性について

nowrap”属性はセル内のテキストを改行させない属性です。

代替方法

HTML5でこの属性は廃止されているので使用するべきではありません。

スタイルシートのwhite-space”プロパティで指定します。

指定できる値

属性値 説明
nowrap セル内のテキストを改行させない

サンプルコード

<table border="1">
<caption>予選結果<caption>
<tr>
<th>Aグループ</th>
<th nowrap="nowrap">シャラコビッチ</th>
<th nowrap="nowrap">フェデアムズ</th>
<th nowrap="nowrap">ニシコレール</th>
<th nowrap="nowrap">勝ち</th>
<th nowrap="nowrap">負け</th>
</tr>
<tr>
<th nowrap="nowrap">シャラコビッチ</th>
<td>***</td>
<td>0-3</td>
<td>2-3</td>
<td>0</td>
<td>2</td>
</tr>
<tr>
<th nowrap="nowrap">フェデアムズ</th>
<td>3-0</td>
<td>***</td>
<td>1-3</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<th nowrap="nowrap">ニシコレール</th>
<td>3-2</td>
<td>3-1</td>
<td>***</td>
<td>2</td>
<td>0</td>
</tr>
</table>
一番上へ
トップにもどる
シェアする
シェアする
Facebookでシェアする
ツイート
Google+でシェア
Pocket
はてなブックマーク