blob: c62e778cd24212c39278afe3b889169dd99894b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
---
title: caption-side
slug: Web/CSS/caption-side
tags:
- CSS
- CSS プロパティ
- CSS 表
- リファレンス
- recipe:css-property
browser-compat: css.properties.caption-side
translation_of: Web/CSS/caption-side
---
{{CSSRef}}
**`caption-side`** は [CSS](/ja/docs/Web/CSS) のプロパティで、表 ({{htmlelement("table")}}) の {{HTMLElement("caption")}} の中身を指定された側に配置します。この値は表の {{cssxref('writing-mode')}} に対する相対値です。
{{EmbedInteractiveExample("pages/css/caption-side.html")}}
## 構文
```css
/* 方向を示す値 */
caption-side: top;
caption-side: bottom;
/* 警告: 非標準の値 */
caption-side: block-start;
caption-side: block-end;
caption-side: inline-start;
caption-side: inline-end;
/* グローバル値 */
caption-side: inherit;
caption-side: initial;
caption-side: revert;
caption-side: unset;
```
`caption-side` プロパティは、以下のキーワード値のうちの一つで指定します。
### 値
- `top`
- : キャプションボックスを表の上方に配置します。
- `bottom`
- : キャプションボックスを表の下方に配置します。
- `block-start`
- : キャプションボックスを表のブロック方向の先頭に配置します。
- `block-end`
- : キャプションボックスを表のブロック方向の末尾に配置します。
- `inline-start`
- : キャプションボックスを表のインライン方向の先頭に配置します。
- `inline-end`
- : キャプションボックスを表のインライン方向の末尾に配置します。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
<h3 id="Setting_captions_above_and_below">キャプションを上や下に設定</h3>
#### HTML
```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
```css
.top caption {
caption-side: top;
}
.bottom caption {
caption-side: bottom;
}
table {
border: 1px solid red;
}
td {
border: 1px solid blue;
}
```
#### 結果
{{EmbedLiveSample('Setting_captions_above_and_below', 'auto', 160)}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
|