最新のWeb開発のチュートリアル
 

HTML <td> nowrap Attribute

<HTML <td>タグ

テーブルセルnowrap属性:

<table>
  <tr>
    <th>Poem</th>
    <th>Poem</th>
  </tr>
  <tr>
    <td nowrap>Never increase, beyond what is necessary, the number of entities required to explain anything</td>
    <td>Never increase, beyond what is necessary, the number of entities required to explain anything</td>
  </tr>
</table>
»それを自分で試してみてください

定義と使用法

nowrap属性は論理属性です。

存在する場合、それは細胞内のコンテンツがラップしないように指定します。


ブラウザのサポート

属性
nowrap はい はい はい はい はい

互換性に関する注意

nowrapの属性<td> HTML5でサポートされていません。 代わりにCSSを使用してください。

CSSの構文: <td style="white-space: nowrap">

CSSの例:表のセルんのワードラップ

私たちのCSSのチュートリアルでは、についての詳細を見つけることができますwhite-space property


HTMLとXHTMLの違い

XHTMLでは、属性の最小化が禁止され、及びnowrap属性は、次のように定義されなければならない<td nowrap="nowrap">


構文

<td nowrap>

<HTML <td>タグ