码迷,mamicode.com
首页 > Web开发 > 详细

css 居中

时间:2015-05-04 11:23:47      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

ie9+ 自身垂直水平居中:

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

 

ie8+ 自身的垂直水平居中:(设定宽高)

  position: absolute;  
  top: 0; left: 0; bottom: 0; right: 0; 

  width: 50%;  
  height: 50%;  
  overflow: auto;  
  margin: auto;  
 

 

webkit 让内容垂直水平居中 :

      display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    -webkit-box-align: center;

moz 让内容垂直居中 : 
    display: -moz-box;
    -moz-box-orient: horizontal;
    -moz-box-pack: center;
    -moz-box-align: center;

css 居中

标签:

原文地址:http://www.cnblogs.com/uh-huh/p/4475627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!