PHP
·
发表于 5年以前
·
阅读量:8279
// 给容器元素设置display: table,当前元素设置display: table-cell:
.container {
width: 300px;
height: 200px;
border: 1px solid #333333;
display: table;
}
.content {
display: table-cell;
vertical-align: middle;
text-align: center;
}