“nowrap”属性について 代替方法 指定できる値 サンプルコード # “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>