CSS div水平垂直居中和div置于底部

时间:2016-07-29 16:41:09   收藏:0   阅读:1606

一、水平居中

.hor_center {
        margin: 0 auto;
}

 


二、水平垂直居中

 

.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;
}

 

 

 
评论(0)
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!