Vertical-Align
既然有水平居中属性text-align: center, 我们的第一反应、实现水平居中的方法应该是vertical-align: middle。
该属性定义行内元素的基线相对于该元素所在行的基线的垂直对齐。在表单元格中,这个属性会设置单元格框中的单元格内容的对齐方式.
But !!!
Vertical-align doesn’t apply to block-level elementslike a paragraph inside a div.
如此可知:这个方式确实直观且有效,但其适用范围仅仅限于 table cell 中的内容。
这也是初学者会容易踩坑且十分困惑的一个问题。
CSS table 中 Vertical-Align 垂直居中示例:
<divclass="parent"><divclass="child">Content herediv> div>
.parent {display: table;}
.child {display: table-cell;vertical-align: middle;}
Line-Height
该方法适用于单行文本(或图片)的垂直居中,我们需要做的仅仅是将line-height属性设置的大于font-size,且等于容器的高度。
<divclass="content">Text here div>
.content{height:200px; /*不必要*/ line-height: 200px;}
当然,我们也可以不设置父级元素的高度,而是让子元素将其撑开,同样能达到效果。
同理,图片和单行文本一样,也为inline元素,也可以通过设置容器的line-height达到居中效果:
="content"> <imgsrc="image.png"alt=""/>div>
.content {line-height: 200px;}
#parent img {vertical-align: middle; /*调整基线位置,不是设定垂直居中哦~*/}
绝对定位 and 负 Margin这里通过绝对定位将目标元素左上角定位在父级元素的中央位置,然后通过设定目标元素的margin属性使其中心点与父级元素重合,适用于所有block元素。
<divclass="parent"><divclass="child">Content herediv> div>
.parent {position: relative;height: 800px;}
.child {position: absolute;top: 50%;left: 50%;height: 30%;width: 50%;margin: -15% 0 0 -25%; /*margin 为负值且为自身尺寸的一半*/}
然而,使用这种方法经常会出现父级容器中的内容溢出, 所以最好在知道父级元素的宽度和高度时使用该方法。
绝对定位 and Stretching
这里通过绝对定位并设置top, bottom, right, and left 为 0 ,将目标元素拉伸至父级元素的所有 4 个边。 再设置 margin 为 auto,使得 上下和左右 margin 相等。则实现完全的剧中效果。适用于所有block元素。
<divclass="parent"><divclass="child">Content herediv> div>
.parent {position: relative;height: 300px;}
.child {position: absolute;top: 0;bottom: 0;left: 0;right: 0;width: 50%;height: 30%;margin: auto;}
这种方法,在IE 8 以下不 work ...
绝对定位 and transform3d
这里通过绝对定位将目标元素左上角定位在父级元素的中央位置,然后通过设定目标元素的transform3d属性使其中心点与父级元素重合,适用于所有block元素。
<divclass="parent"><divclass="child">Content herediv> div>.parent {position: relative;height: 300px;}
.child {position: absolute;top:50%;left:50%;width: 150px;height: 130px;transform:translate3d(-50%,-50%,0); /*向左向上移动自身尺寸的一半*/}
IE 8 以下不 work ...
css3 中的 Flex 布局
将父级容器设置为 Flex 容器,并规定子项目的排列方式。详细参见 Flex 布局教程
<divclass="parent"><divclass="child">Content herediv> div>
.parent {
display: flex;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -moz-flex;
display: -ms-flexbox;
/* 子元素主轴(默认为水平轴)上居中*/
-webkit-box-align: center;
-moz-box-align: center;
-ms-flex-pack:center;/* IE 10 */
-webkit-justify-content: center;
-moz-justify-content: center;
justify-content: center;/* IE 11+,Firefox 22+,Chrome 29+,Opera 12.1*/
/* 子元素交叉轴(默认为纵轴)居中 */
-webkit-box-pack: center;
-moz-box-pack: center;
-ms-flex-align: center;/* IE 10 */
-webkit-align-items: center;
-moz-align-items: center;
align-items: center;
height: 300px;
}
.child{width: 150px;height: 130px;}
支持 CSS3 的浏览器可用, 由于个浏览器厂商各异,导致各种前缀眼花缭乱。