tutoriais mais recente desenvolvimento web
 

HTML <td> nowrap Attribute

<HTML <td> tag

Exemplo

Uma célula da tabela com uma nowrap atributo:

<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>
Tente você mesmo "

Definição e Uso

O nowrap atributo é um atributo booleano.

Quando presente, ele especifica que o conteúdo dentro de uma célula não deve quebrar.


Suporte a navegadores

Atributo
nowrap sim sim sim sim sim

Notas de compatibilidade

O nowrap atributo do <td> não é suportado no HTML5. Use CSS em vez disso.

Sintaxe CSS: <td style="white-space: nowrap">

Exemplo CSS: Nenhuma palavra-wrapping na célula da tabela

Em nosso tutorial CSS pode encontrar mais detalhes sobre a white-space property .


Diferenças entre HTML e XHTML

Em XHTML, o atributo minimização é proibido, eo nowrap atributo deve ser definida como <td nowrap="nowrap"> .


Sintaxe

<td nowrap>

<HTML <td> tag