CSS vertical-align 属性

垂直对齐图像:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    img.top {
      vertical-align: text-top;
    }

    img.bottom {
      vertical-align: text-bottom;
    }
  </style>
</head>

<body>
  <p>一个<img src="/examples/logo.png" alt="mifengjc" width="270" height="50" />默认对齐的图像。</p>
  <p>一个<img class="top" src="/examples/logo.png" alt="mifengjc" width="270" height="50" /> text-top 对齐的图像。</p>
  <p>一个<img class="bottom" src="/examples/logo.png" alt="mifengjc" width="270" height="50" /> text-bottom 对齐的图像。</p>
</body>
</html>

尝试一下 »


属性定义及使用说明

vertical-align属性设置一个元素的垂直对齐。

默认值: baseline
继承: no
版本: CSS1
JavaScript 语法: object.style.verticalAlign="bottom"

浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号。

属性
vertical-align 1.0 4.0 1.0 1.0 4.0

属性值

描述
baseline 默认。元素放置在父元素的基线上。
sub 垂直对齐文本的下标。
super 垂直对齐文本的上标
top 把元素的顶端与行中最高元素的顶端对齐
text-top 把元素的顶端与父元素字体的顶端对齐
middle 把此元素放置在父元素的中部。
bottom 把元素的顶端与行中最低的元素的顶端对齐。
text-bottom 把元素的底端与父元素字体的底端对齐。
length
% 使用 "line-height" 属性的百分比值来排列此元素。允许使用负值。
inherit 规定应该从父元素继承 vertical-align 属性的值。

相关文章

CSS 教程: CSS 文本