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

如何用 CSS 做到完全垂直居中

时间:2016-01-26 00:20:25      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

本文将教你一个很有用的技巧——如何使用 CSS 做到完全的垂直居中。我们都知道 margin:0 auto; 的样式能让元素水平居中,而 margin: auto; 却不能做到垂直居中……直到现在。但是,请注意!想让元素绝对居中,只需要声明元素高度,并且附加以下样式,就可以做到:

1
2
3
4
5
.Absolute-Center {
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
}

如何用 CSS 做到完全垂直居中

标签:

原文地址:http://www.cnblogs.com/toward-the-sun/p/5159014.html

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