是要什么居中?
1. 文字居中: 用text-align: center
2. 模块居中: div{width: 100px; margin: auto}
3. 绝对定位:div{
position: absolute;
top: 50%;
left: 50%;
width: 100px;
height:100px;
margin-left: -50px;
margin-top: -50px;
}