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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
|
---
title: vertical-align
slug: Web/CSS/vertical-align
tags:
- CSS
- CSS Property
- Reference
translation_of: Web/CSS/vertical-align
---
<div>{{CSSRef}}</div>
<p><a href="https://developer.mozilla.org/en-US/docs/CSS" title="CSS">CSS</a> 的属性 <strong><code>vertical-align</code></strong> 用来指定行内元素(inline)或表格单元格(table-cell)元素的垂直对齐方式。</p>
<div>{{EmbedInteractiveExample("pages/css/vertical-align.html")}}</div>
<p>vertical-align属性可被用于两种环境:</p>
<ul>
<li>使行内元素盒模型与其行内元素容器垂直对齐。例如,用于垂直对齐一行文本内的图片{{HTMLElement("img")}}:</li>
</ul>
<div id="vertical-align-inline">
<pre class="hidden brush: html"><p>
top:<img style="vertical-align:top" src="https://mdn.mozillademos.org/files/15189/star.png"/>
middle:<img style="vertical-align:middle" src="https://mdn.mozillademos.org/files/15189/star.png"/>
bottom:<img style="vertical-align:bottom" src="https://mdn.mozillademos.org/files/15189/star.png"/>
super:<img style="vertical-align:super" src="https://mdn.mozillademos.org/files/15189/star.png"/>
sub:<img style="vertical-align:sub" src="https://mdn.mozillademos.org/files/15189/star.png"/>
</p>
<p>
text-top:<img style="vertical-align:text-top" src="https://mdn.mozillademos.org/files/15189/star.png"/>
text-bottom:<img style="vertical-align:text-bottom" src="https://mdn.mozillademos.org/files/15189/star.png"/>
0.2em:<img style="vertical-align:0.2em" src="https://mdn.mozillademos.org/files/15189/star.png"/>
-1em:<img style="vertical-align:-1em" src="https://mdn.mozillademos.org/files/15189/star.png"/>
20%:<img style="vertical-align:20%" src="https://mdn.mozillademos.org/files/15189/star.png"/>
-100%:<img style="vertical-align:-100%" src="https://mdn.mozillademos.org/files/15189/star.png"/>
</p>
</pre>
<pre class="hidden brush: css">#* {
box-sizing: border-box;
}
img {
margin-right: 0.5em;
}
p {
height: 3em;
padding: 0 .5em;
font-family: monospace;
text-decoration: underline overline;
margin-left: auto;
margin-right: auto;
width: 80%;
}
</pre>
</div>
<p>{{EmbedLiveSample("vertical-align-inline", 1200, 160)}}</p>
<ul>
<li>垂直对齐表格单元内容:</li>
</ul>
<div id="vertical-align-table">
<pre class="hidden brush: html"><table>
<tr>
<td style="vertical-align: baseline">baseline</td>
<td style="vertical-align: top">top</td>
<td style="vertical-align: middle">middle</td>
<td style="vertical-align: bottom">bottom</td>
<td>
<p>There is a theory which states that if ever anyone discovers exactly what the Universe is for and why it is here, it will instantly disappear and be replaced by something even more bizarre and inexplicable.</p>
<p>There is another theory which states that this has already happened.</p>
</td>
</tr>
</table>
</pre>
<pre class="hidden brush: css">table {
margin-left: auto;
margin-right: auto;
width: 80%;
}
table, th, td {
border: 1px solid black;
}
td {
padding: 0.5em;
font-family: monospace;
}
</pre>
</div>
<p>{{EmbedLiveSample("vertical-align-table", 1200, 230)}}</p>
<p>注意 <code>vertical-align</code> 只对行内元素、行内块元素和表格单元格元素生效:不能用它垂直对齐<a href="/zh-CN/docs/Web/HTML/Block-level_elements">块级元素</a>。</p>
<h2 id="语法">语法</h2>
<pre class="brush: css no-line-numbers">/* Keyword values */
vertical-align: baseline;
vertical-align: sub;
vertical-align: super;
vertical-align: text-top;
vertical-align: text-bottom;
vertical-align: middle;
vertical-align: top;
vertical-align: bottom;
/* <length> values */
vertical-align: 10em;
vertical-align: 4px;
/* <percentage> values */
vertical-align: 20%;
/* Global values */
vertical-align: inherit;
vertical-align: initial;
vertical-align: unset;
</pre>
<p><code>vertical-align</code> 属性指定为下面列出的值之一。</p>
<h3 id="行内元素的值">行内元素的值</h3>
<h4 id="相对父元素的值">相对父元素的值</h4>
<p>这些值使元素相对其父元素垂直对齐:</p>
<dl>
<dt><code>baseline</code></dt>
<dd>使元素的基线与父元素的基线对齐。HTML规范没有详细说明部分<a href="/zh-CN/docs/Web/CSS/Replaced_element">可替换元素</a>的基线,如{{HTMLElement("textarea")}} ,这意味着这些元素使用此值的表现因浏览器而异。</dd>
<dt><code>sub</code></dt>
<dd>使元素的基线与父元素的下标基线对齐。</dd>
<dt><code>super</code></dt>
<dd>使元素的基线与父元素的上标基线对齐。</dd>
<dt><code>text-top</code></dt>
<dd>使元素的顶部与父元素的字体顶部对齐。</dd>
<dt><code>text-bottom</code></dt>
<dd>使元素的底部与父元素的字体底部对齐。</dd>
<dt><code>middle</code></dt>
<dd>使元素的中部与父元素的基线加上父元素x-height(译注:<a href="https://www.zhangxinxu.com/wordpress/2015/06/about-letter-x-of-css/">x高度</a>)的一半对齐。</dd>
<dt>{{cssxref("<length>")}}</dt>
<dd>使元素的基线对齐到父元素的基线之上的给定长度。可以是负数。</dd>
<dt>{{cssxref("<percentage>")}}</dt>
<dd>使元素的基线对齐到父元素的基线之上的给定百分比,该百分比是{{Cssxref("line-height")}}属性的百分比。可以是负数。</dd>
</dl>
<h4 id="相对行的值">相对行的值</h4>
<p>下列值使元素相对整行垂直对齐:</p>
<dl>
<dt><code>top</code></dt>
<dd>使元素及其后代元素的顶部与整行的顶部对齐。</dd>
<dt><code>bottom</code></dt>
<dd>使元素及其后代元素的底部与整行的底部对齐。</dd>
</dl>
<p>没有基线的元素,使用外边距的下边缘替代。</p>
<h3 id="表格单元格的值">表格单元格的值</h3>
<dl>
<dt><code>baseline</code> (以及 <code>sub</code>, <code>super</code>, <code>text-top</code>, <code>text-bottom</code>, <code><length></code>, <code><percentage></code>)</dt>
<dd>使单元格的基线,与该行中所有以基线对齐的其它单元格的基线对齐。</dd>
<dt><code>top</code></dt>
<dd>使单元格内边距的上边缘与该行顶部对齐。</dd>
<dt><code>middle</code></dt>
<dd>使单元格内边距盒模型在该行内居中对齐。</dd>
<dt><code>bottom</code></dt>
<dd>使单元格内边距的下边缘与该行底部对齐。</dd>
</dl>
<p>可以是负数。</p>
<h3 id="正式语法">正式语法</h3>
{{csssyntax}}
<h2 id="示例">示例</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><div>An <img src="https://mdn.mozillademos.org/files/12245/frame_image.svg" alt="link" width="32" height="32" /> image with a default alignment.</div>
<div>An <img class="top" src="https://mdn.mozillademos.org/files/12245/frame_image.svg" alt="link" width="32" height="32" /> image with a text-top alignment.</div>
<div>An <img class="bottom" src="https://mdn.mozillademos.org/files/12245/frame_image.svg" alt="link" width="32" height="32" /> image with a text-bottom alignment.</div>
<div>An <img class="middle" src="https://mdn.mozillademos.org/files/12245/frame_image.svg" alt="link" width="32" height="32" /> image with a middle alignment.</div>
</pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">img.top { vertical-align: text-top; }
img.bottom { vertical-align: text-bottom; }
img.middle { vertical-align: middle; }
</pre>
<h3 id="结果">结果</h3>
<p>{{EmbedLiveSample("示例")}}</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Transitions', '#animatable-css', 'vertical-align')}}</td>
<td>{{Spec2('CSS3 Transitions')}}</td>
<td>定义 <code>vertical-align</code> 为可动画的。</td>
</tr>
<tr>
<td>{{SpecName('CSS2.1', 'visudet.html#propdef-vertical-align', 'vertical-align')}}</td>
<td>{{Spec2('CSS2.1')}}</td>
<td>增加 {{cssxref("<length>")}} 取值, 允许它对{{cssxref("display")}}类型为<code>table-cell</code>的元素生效。</td>
</tr>
<tr>
<td>{{SpecName('CSS1', '#vertical-align', 'vertical-align')}}</td>
<td>{{Spec2('CSS1')}}</td>
<td>初步定义。</td>
</tr>
</tbody>
</table>
<p>{{cssinfo}}</p>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("css.properties.vertical-align")}}</p>
<h2 id="参见">参见</h2>
<ul>
<li><a href="/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Typical_Use_Cases_of_Flexbox#Center_item">Typical use cases of Flexbox, section "Center item"</a></li>
<li>{{Cssxref("line-height")}}, {{Cssxref("text-align")}}, {{Cssxref("margin")}}</li>
<li><a href="http://phrogz.net/css/vertical-align/index.html">Understanding <code>vertical-align</code>, or "How (Not) To Vertically Center Content"</a></li>
<li><a href="https://christopheraue.net/design/vertical-align">Vertical-Align: All You Need To Know</a></li>
</ul>
|