Objeto TFoot do HTML DOM

  • Página anterior <td>
  • Próxima página <th>

TFoot object

The TFoot object represents the HTML <tfoot> element.

Access TFoot object

You can use getElementById() to access the <tfoot> element:

var x = document.getElementById("myTFoot");

Try it yourself

Create TFoot object

You can use the document.createElement() method to create a <tfoot> element:

var x = document.createElement("TFOOT");

Try it yourself

TFoot object properties

Propriedades Description
align

Not supported in HTML5.Por favor, use style.textAlign.

Sets or returns the horizontal alignment style of the content within the tfoot element.

ch

Not supported in HTML5.

Sets or returns the alignment character within the tfoot element.

chOff

Not supported in HTML5.

Sets or returns the horizontal offset of the ch attribute.

vAlign

Not supported in HTML5.Por favor, use style.verticalAlign.

Define ou retorna o modo de alinhamento vertical do conteúdo do elemento tfoot.

Propriedades e eventos de padrão

O objeto TFoot suporta padrõesPropriedadeseEventos.

Páginas relacionadas

Tutorial HTML:Tabela HTML

Manual de referência HTML:Etiqueta <tfoot> do HTML

  • Página anterior <td>
  • Próxima página <th>