2019-07-10
描述
使用 display: table
在父元素中水平且垂直居中一个子元素(flexbox
的一个替代方案)。
HTML
<div class="container">
<div class="center"><span>Centered content</span></div>
</div>
CSS
.container {
border: 1px solid #333;
height: 250px;
width: 250px;
}
.center {
display: table;
height: 100%;
width: 100%;
}
.center > span {
display: table-cell;
text-align: center;
vertical-align: middle;
}
Demo
说明
- 在 '.center' 中的
display: table
允许元素有<table>
HTML 元素的展现行为 - '.center' 中的 100% 高度和宽度让元素填满他父元素内可用的空间
- '.center > span' 中的
display: table-cell
允许元素有<td>
HTML 元素的展现行为 - '.center > span' 中的
text-align: center
可以让子元素水平居中 - '.center > span' 中的
vertical-align: middle
可以让子元素垂直居中 - 外部的父元素(本例中的 '.container')必须有一个固定的高和宽
浏览器支持
支持率:100%
支持情况:https://caniuse.com/#search=display%3A%20table