The caption-side CSS property positions the content of a table's <caption> on the specified side.
The values are relative to the writing-mode of the table.
| Initial value | top |
|---|---|
| Applies to | table-caption elements |
| Inherited | yes |
| Media | visual |
| Computed value | as specified |
| Animation type | discrete |
| Canonical order | the unique non-ambiguous order defined by the formal grammar |
/* Directional values */ caption-side: top; caption-side: bottom; /* Warning: non-standard values */ caption-side: left; caption-side: right; caption-side: top-outside; caption-side: bottom-outside; /* Global values */ caption-side: inherit; caption-side: initial; caption-side: unset;
topbottomleft
right
top-outside
top value, which will be reintroduced by this value in a future specification.bottom-outside
bottom value, which will be reintroduced by this value in a future specification.inheritcaption-side value defined on the parent's element must be used.top | bottom | block-start | block-end | inline-start | inline-end
.contentbox table-caption {
caption-side: bottom;
}
| Specification | Status | Comment |
|---|---|---|
| CSS Logical Properties Level 1 The definition of 'caption-side' in that specification. | Editor's Draft | Defines the top and bottom values as relative to the writing-mode value |
| CSS Level 2 (Revision 1) The definition of 'caption-side' in that specification. | Recommendation | Initial definition |
| Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
| Basic support | 1.0 | (Yes) | 1.0 | 8.0 | 4.0 | 1.0 |
left, right, top-outside and bottom-outside
| No support | ? | (Yes) | No support | No support | No support |
top and bottom are relative to the writing-mode value
| No support | ? | 42 (42) | No support | No support | No support |
| Feature | Android | Edge | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | ? | ? | ? | (Yes) |
left, right, top-outside and bottom-outside
| No support | ? | ? | No support | No support | No support |
top and bottom are relative to the writing-mode value
| No support | ? | 42.0 (42) | No support | No support | No support |
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/caption-side