PHP
·
发表于 6年以前
·
阅读量:8496
// 给容器元素设置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;
}