caption-side - CSS: Cascading Style Sheets 编辑

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;

/* 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;

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.
left This API has not been standardized.
The caption box should be positioned on the left side of the table.
This value was proposed for CSS 2, but removed from the final CSS 2.1 specification. It is non-standard.
right This API has not been standardized.
The caption box should be positioned on the right side of the table.
This value was proposed for CSS 2, but removed from the final CSS 2.1 specification. It is non-standard.
top-outside This API has not been standardized.
The caption box should be positioned above the table, while the width and horizontal alignment behavior are not bound to the table's horizontal layout.
The CSS 2.1 specification notes that the CSS 2 specification described a different behavior for the top value, which will be reintroduced by this value in a future specification.
bottom-outside This API has not been standardized.
The caption box should be positioned below the table, while the width and horizontal alignment behavior are not bound to the table's horizontal layout.
The CSS 2.1 specification notes that the CSS 2 specification described a different behavior for the bottom value, which will be reintroduced by this value in a future specification.

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

SpecificationStatusComment
CSS Logical Properties and Values Level 1
The definition of 'caption-side' in that specification.
Editor's DraftDefines 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.
RecommendationInitial definition.

Browser compatibility

BCD tables only load in the browser

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:82 次

字数:8622

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文