CSS探索系列 元素居中
DEMO
<style>
.box {
width: 600px;
height: 300px;
color: #0aa;
border: 1px solid #0aa;
}
.box> .item {
width: 300px;
height: 150px;
margin: 0 auto;
color: #fff;
background: #0aa;
}
</style>
<section class="box">
<div class="item"></div>
</section>水平居中
1.margin:auto
2.text-align:center
垂直居中
3.height + line-height
4.幽灵元素
水平垂直居中
5.table-cell布局
6.flex布局
7.grid
8.position + 负margin
9.position + calc()
10.position + margin: auto
11.position + transform
12.background
13.padding填充
总结
最后更新于