HTML DOM TFoot Object

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 the <tfoot> element:

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

Try it yourself

TFoot Object Properties

Properties Description
align

HTML5 does not support.Please use instead. style.textAlign.

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

ch

HTML5 does not support.

Sets or returns the alignment character within the tfoot element.

chOff

HTML5 does not support.

Sets or returns the horizontal offset of the ch attribute.

vAlign

HTML5 does not support.Please use instead. style.verticalAlign.

Sets or returns the vertical alignment of the content within the tfoot element.

Standard Properties and Events

TFoot Object Supports StandardsPropertiesAndEvents.

Related Pages

HTML Tutorial:HTML Table

HTML Reference Manual:HTML <tfoot> Tag