logo
  • 教程列表
  • SO官方文档
  • 垂直居中
    • 以显示表为中心
    • 以变​​换为中心
    • 以 Flexbox 为中心
    • 使用线高度居中文本
    • 以绝对位置为中心
    • 以伪元素为中心
  1. StackOverflow 文档
  2. CSS 教程
  3. 垂直居中
  4. 以显示表为中心

以显示表为中心

Created: November-22, 2018

HTML:

<div class="wrapper">
    <div class="outer">
        <div class="inner">
            centered
        </div>
    </div>
</div>

CSS:

.wrapper {
  height: 600px;
  text-align: center;
}
.outer {
  display: table;
  height: 100%;
  width: 100%;
}
.outer .inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
  • 以变​​换为中心
  • 垂直居中

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 关于我们
  • 免责声明