HTML - Tag <thead>

Descrição

A tag HTML <thead> é usada para adicionar um cabeçalho a uma tabela. A tag thead é usada em conjunto com a tag tbody e a tag tfoot para determinar cada parte da tabela (cabeçalho, rodapé, corpo).

Exemplo

<!DOCTYPE html>
<html>

   <head>
      <title>HTML thead Tag</title>
   </head>

   <body>
      <table style = "width:100%" border = "1">
         <thead>
            <tr>
               <td colspan = "4">This is the head of the table</td>
            </tr>
         </thead>
         
         <tfoot>
            <tr>
               <td colspan = "4">This is the foot of the table</td>
            </tr>
         </tfoot>
         
         <tbody>
            <tr>
               <td>Cell 1</td>
               <td>Cell 2</td>
               <td>Cell 3</td>
               <td>Cell 4</td>
            </tr>
            <tr>
               ...more rows here containing four cells...
            </tr>
         </tbody>
         
         <tbody>
            <tr>
               <td>Cell 1</td>
               <td>Cell 2</td>
               <td>Cell 3</td>
               <td>Cell 4</td>
            </tr>
            <tr>
               ...more rows here containing four cells...
            </tr>
         </tbody>
         
      </table>
   </body>

</html>

Isso produzirá o seguinte resultado -

Atributos Globais

Esta tag suporta todos os atributos globais descritos em - Referência de Atributo HTML

Atributos Específicos

A tag HTML <thead> também suporta os seguintes atributos adicionais -

Atributo Valor Descrição
alinhar direita
esquerda
centro
justificar
char
Obsoleto - Alinhamento visual.
Caracteres personagem Obsoleto - especifica em qual caractere alinhar o texto. Usado quando align = "char"
charoff pixels ou% Obsoleto - Especifica um deslocamento de alinhamento (em pixels ou valor percentual) em relação ao primeiro caractere conforme especificado com o atributo char. Usado quando align = "char"
valign linha de base superior
meio
inferior
Obsoleto - Alinhamento vertical.

Atributos de evento

Esta tag suporta todos os atributos de evento descritos em - Referência de eventos HTML

Suporte de navegador

cromada Raposa de fogo IE Ópera Safári Android
sim sim sim sim sim sim