CSSdiv⽔平垂直居中和div置于底部
⼀、⽔平居中
.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; /*要居中的div的宽度的⼀半*/
margin-top: -120px; /*要居中的div的⾼度的⼀半*/
}
三、div置于底部(footer)
.bottom_footer {
position: fixed; /*or前⾯的是absolute就可以⽤*/
bottom: 0px;
}
>div中的div居中
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论