一、水平居中
.hor_center {
margin: 0 auto;
}
二、水平垂直居中
<div class="content"></div>
.content {
width: 360px;
height: 240px;
}
.ver_hor_center {
position: absolute;
top: 50%;
left: 50%;
margin-left: -180px;
margin-top: -120px;
}
三、div置于底部(footer)
.bottom_footer {
position: fixed;
bottom: 0px;
}