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 valuetop
Applies totable-caption elements
Inheritedyes
Computed valueas specified
Animation typediscrete

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> 
CSS
.top caption {   caption-side: top; }  .bottom caption {   caption-side: bottom; }  table {   border: 1px solid red; }  td {   border: 1px solid blue; } 
Result

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

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
Our brains are wired to find things we are looking for - if your always cynical or waiting for things to go wrong, then your life will reflect that. On the other hand, having a positive outlook on life will bring you joy and provide you with inspiration when you least expect it ☀️🍉🌴
Unknown
Random CSS Property

:host-context()

The :host-context() CSS pseudo-class function selects the shadow host of the shadow DOM containing the CSS it is used inside (so you can select a custom element from inside its shadow DOM) — but only if the selector given as the function's parameter matches the shadow host's ancestor(s) in the place it sits inside the DOM hierarchy.
:host-context() css reference