html 使用CSS表垂直对齐内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 使用CSS表垂直对齐内容相关的知识,希望对你有一定的参考价值。

.container {
  display: table;
  background: #7396a1;
  height: 100px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.content {
  display: table-cell;
  vertical-align: middle;
  padding: 0 30px;
}
<div class="container">
  <div class="content">I'm aligned vertically!</div>
</div>

以上是关于html 使用CSS表垂直对齐内容的主要内容,如果未能解决你的问题,请参考以下文章

css 垂直使用css对齐任何内容

垂直对齐 Bootstrap 3 列的内容

css如何使div里面的文字垂直对齐

在 CSS Grid 中垂直对齐内容 [重复]

使用 CSS HTML 垂直对齐提交按钮

有没有办法将文本与 CSS 内容属性(chrome)中的图像垂直对齐?