vertical-align
vertical-align
は CSS のプロパティで、インラインボックス、インラインブロック、表セルボックスの垂直方向の配置を設定します。
試してみましょう
vertical-align は、2 つの場面で使用することができます。
- 包含する行ボックスの中で、インライン要素のボックスの垂直方向の配置を決める場合。例えば、テキストの行の中で画像の垂直位置を決めるために使用することができます。
- 表のセルの内容の垂直方向の配置を決める場合。
vertical-align
はインライン要素、インラインブロック要素、表のセル要素だけに適用されることに注意してください。つまり、ブロックレベル要素の垂直方向の配置には使用できません。
構文
/* キーワード値 */
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> 値 */
vertical-align: 10em;
vertical-align: 4px;
/* <percentage> 値 */
vertical-align: 20%;
/* グローバル値 */
vertical-align: inherit;
vertical-align: initial;
vertical-align: revert;
vertical-align: unset;
vertical-align
プロパティは、以下の値のうち一つで指定します。
インライン要素用の値
親要素との相対値
以下の値は、親要素に対する垂直方向の配置方法を表します。
baseline
-
要素のベースラインを親要素のベースラインに揃えます。一部の置換要素、例えば
<textarea>
などのベースラインは HTML 仕様で未定義です。このため、このキーワードの挙動はブラウザーにより異なるかもしれません。 sub
-
要素のベースラインを親要素の subscript-baseline に揃えます。
super
-
要素のベースラインを親要素の superscript-baseline に揃えます。
text-top
-
要素の上端を親要素のフォントの上端に揃えます。
text-bottom
-
要素の下端を親要素のフォントの下端に揃えます。
middle
-
要素の中央を親要素の
baseline + x-height の半分
に揃えます。 <length>
-
要素のベースラインを、親要素のベースラインの指定値分上に揃えます。負の値を使えます。
<percentage>
-
<length>
値と似ていますが、line-height
プロパティに対するパーセント値で指定します。負の値を使えます。
行との相対値
以下の値は、親要素ではなく、行全体に対する垂直方向の配置方法を表します。
ベースラインを持たない要素では、代わりにマージン境界の下端が使われます。
表のセル用の値
公式定義
初期値 | baseline |
---|---|
適用対象 | インラインレベルおよびテーブルセル要素。 ::first-letter および::first-line にも適用されます。 |
継承 | なし |
パーセント値 | 要素自身の line-height に対する相対値 |
計算値 | パーセンテージか長さを指定すると絶対的な値、それ以外は指定されたキーワード |
アニメーションの種類 | length |
形式文法
vertical-align =
[ first | last ] ||
<'alignment-baseline'> ||
<'baseline-shift'>
<alignment-baseline> =
baseline |
text-bottom |
alphabetic |
ideographic |
middle |
central |
mathematical |
text-top
<baseline-shift> =
<length-percentage> |
sub |
super |
top |
center |
bottom
<length-percentage> =
<length> |
<percentage>
例
基本的な例
HTML
<div>
An <img src="frame_image.svg" alt="link" width="32" height="32" /> image with
a default alignment.
</div>
<div>
An
<img class="top" src="frame_image.svg" alt="link" width="32" height="32" />
image with a text-top alignment.
</div>
<div>
An
<img class="bottom" src="frame_image.svg" alt="link" width="32" height="32" />
image with a text-bottom alignment.
</div>
<div>
An
<img class="middle" src="frame_image.svg" alt="link" width="32" height="32" />
image with a middle alignment.
</div>
CSS
img.top {
vertical-align: text-top;
}
img.bottom {
vertical-align: text-bottom;
}
img.middle {
vertical-align: middle;
}
結果
行ボックス内での垂直方向の配置
HTML
<p>
top: <img style="vertical-align: top" src="star.png" /> middle:
<img style="vertical-align: middle" src="star.png" /> bottom:
<img style="vertical-align: bottom" src="star.png" /> super:
<img style="vertical-align: super" src="star.png" /> sub:
<img style="vertical-align: sub" src="star.png" />
</p>
<p>
text-top: <img style="vertical-align: text-top" src="star.png" /> text-bottom:
<img style="vertical-align: text-bottom" src="star.png" /> 0.2em:
<img style="vertical-align: 0.2em" src="star.png" /> -1em:
<img style="vertical-align: -1em" src="star.png" /> 20%:
<img style="vertical-align: 20%" src="star.png" /> -100%:
<img style="vertical-align: -100%" src="star.png" />
</p>
結果
表のセル内での垂直方向の配置
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>
CSS
table {
margin-left: auto;
margin-right: auto;
width: 80%;
}
table,
th,
td {
border: 1px solid black;
}
td {
padding: 0.5em;
font-family: monospace;
}
結果
仕様書
Specification |
---|
Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification # propdef-vertical-align |
ブラウザーの互換性
BCD tables only load in the browser