CSS div水平垂直居中和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;  
}  

來自:http://blog.csdn.net/sykent/article/details/7791284


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM