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

CSS垂直居中小结

时间:2017-06-07 21:05:48      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:orm   div   position   tran   box   小结   blog   布局   size   

1、设置子元素:

{
  ...
  position :absolute;
  margin:auto;   
  top:0;
  right:0;
  bottom:0;
  left:0;       
}

2、设置子元素:(height必须是固定值)

{
      position: absolute;
      top:50%;
      margin-top: - (0.5height);
}

3、设置子元素:(只适用于情况比较简单的单行文本)

{
  height:n px;
  line-height: n px; 
}

4、box 布局

5、transform

{
     position: absolute;
     top: 50%;  
     transform:translateY(-50%);  
}

  

CSS垂直居中小结

标签:orm   div   position   tran   box   小结   blog   布局   size   

原文地址:http://www.cnblogs.com/JRliu/p/5940322.html

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