css 居中

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;

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。