caption-side

The caption-side property specifies the position of the caption box with respect to the table box.

CSS2

caption-side: top | bottom | inherit
Initial: top
Applies To: table-caption elements
Inherited: yes
Percentages: NA
Media: visual

Note: Doctype is required for Internet Explorer 8+

Values

Δ

caption-side: value;
 
Value: Description:
bottom Positions the caption box below the table box
inherit Takes the same computed value as the property for the element's parent
top Positions the caption box above the table box

DOM

Δ

[window.]document.getElementById("element-id").style.captionSide = "caption-side";

Example | Values | bottom

Δ

Example | Values | top

Δ

Example | DOM

Δ

Reference

Δ