标签:
本文将教你一个很有用的技巧——如何使用 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 ; } |
标签:
原文地址:http://www.cnblogs.com/toward-the-sun/p/5159014.html