caption-side
Quick Summary for caption-side
			    The 
			caption-side CSS property puts the content of a table's <caption> on the specified side. The values are relative to the writing-mode of the table.
			  Code Usage for caption-side
/* Directional values */ caption-side: top; caption-side: bottom;  /* Logical values */ caption-side: block-start; caption-side: block-end; caption-side: inline-start; caption-side: inline-end;  /* Global values */ caption-side: inherit; caption-side: initial; caption-side: revert; caption-side: unset; More Details for caption-side
caption-side
The caption-side CSS property puts the content of a table's <caption> on the specified side. The values are relative to the writing-mode of the table.
Syntax
/* Directional values */ caption-side: top; caption-side: bottom;  /* Logical values */ caption-side: block-start; caption-side: block-end; caption-side: inline-start; caption-side: inline-end;  /* Global values */ caption-side: inherit; caption-side: initial; caption-side: revert; caption-side: unset; The caption-side property is specified as one of the keyword values listed below.
Values
top        The caption box should be positioned above the table.
bottom        The caption box should be positioned below the table.
block-start        The caption box should be positioned at the block start edge of the table.
block-end        The caption box should be positioned at the block end edge of the table.
inline-start        The caption box should be positioned at the inline start edge of the table.
inline-end        The caption box should be positioned at the inline end edge of the table.
Formal definition
| Initial value | top | 
|---|---|
| Applies to | table-caption elements | 
| Inherited | yes | 
| Computed value | as specified | 
| Animation type | discrete | 
Formal syntax
top | bottom | block-start | block-end | inline-start | inline-end
Examples
Setting captions above and below
HTML<table class="top">   <caption>Caption ABOVE the table</caption>   <tr>     <td>Some data</td>     <td>Some more data</td>   </tr> </table>  <br>  <table class="bottom">   <caption>Caption BELOW the table</caption>   <tr>     <td>Some data</td>     <td>Some more data</td>   </tr> </table> .top caption {   caption-side: top; }  .bottom caption {   caption-side: bottom; }  table {   border: 1px solid red; }  td {   border: 1px solid blue; } Specifications
| Specification | 
|---|
| CSS Logical Properties and Values Level 1 # caption-side | 
Last modified: Aug 12, 2021, by MDN contributors
Select your preferred language English (US)DeutschFrançais日本語中文 (简体) Change language Posted in   
      12:22 am, February 22, 2022 
    Add Comment
Other Items in CSS
      rgb()
rgba()
:right
right
@right-bottom
:root
rotate
rotate()
rotate3d()
rotateX()
rotateY()
rotateZ()
row-gap
ruby-align
ruby-position
saturate()
scale
scale()
scale3d()
scaleX()
scaleY()
scaleZ()
:scope
scroll-behavior
scroll-margin
scroll-margin-block
scroll-margin-block-end
scroll-margin-block-start
scroll-margin-bottom
scroll-margin-inline
scroll-margin-inline-end
scroll-margin-inline-start
scroll-margin-left
scroll-margin-right
scroll-margin-top
scroll-padding
scroll-padding-block
scroll-padding-block-end
scroll-padding-block-start
scroll-padding-bottom
scroll-padding-inline
scroll-padding-inline-end
scroll-padding-inline-start
scroll-padding-left
scroll-padding-right
scroll-padding-top
scroll-snap-align
scroll-snap-stop
scroll-snap-type
@scroll-timeline
    
   
	