Latest web development tutorials

HTML th atributo nowrap

HTML th tag Manual de Referência tag HTML <th>

Exemplos

célula do cabeçalho com um atributo nowrap:

<table border="1">
<tr>
<th>Month</th>
<th nowrap>My Savings for a new car</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>

tente »

Suporte a navegadores

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Todos os principais navegadores suportam o atributo nowrap.


Definição e Uso

O HTML5 não suporta o elemento <th> nowrap atributo. Use CSS em vez disso.

Em HTML 4.01, <th> O atributo nowrap está obsoleta .

nowrap atributo é um atributo booleano.

atributo nowrap especifica o conteúdo da célula de cabeçalho não quebra.


Notas de compatibilidade

Em HTML 4.01, <th> O atributo nowrap está obsoleta. Use CSS em vez disso.

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

CSS Exemplo: célula de cabeçalho da tabela não é moldado

Em nosso tutorial CSS você pode encontrar mais informações sobre os de espaço em branco atributo detalhes.


As diferenças entre HTML e XHTML

Em XHTML, proibir atributo minimização, atributo nowrap deve ser definido como <th nowrap = "nowrap">.


gramática

<th nowrap>


HTML th tag Manual de Referência tag HTML <th>