caption-side Description:
The caption-side property defines where the caption will be located with respect to the table.
caption-side in CSS Versions:
caption-side Syntax:
caption-side: top | bottom | inherit
- top
Display the caption above the table. - bottom
Display the caption below the table. - inherit
The element should have the same caption-side setting as the parent.
caption-side Initial Value:
top
caption-side Applies To:
Table-caption elements.
caption-side Inheritance:
This property is inherited.
caption-side Browser Support:
caption-side media type:
- Visual
caption-side Examples:
Standard caption-side property
<table>
<caption style="caption-side : bottom;"> This is the caption</caption> <tr><td>The caption on this table will show at the bottom</td></tr>
</table>
caption-side Special Notes:
- Use text-align to align text within the caption box.

