CSS 居中方法汇总(hacks, translate(-50%,-50%), 绝对定位等)
分类:Html_Css| 发布:佚名| 查看:942 | 发表时间:2014/2/13
<center>
不建议用了。
text-align:center
在父容器里水平居中 inline 文字,或 inline 元素
vertical-align:middle
垂直居中 inline 文字,inline 元素,配合 display:table
,display:table-cell
,有奇效。
line-height
与 height 联手,垂直居中文字
margin:auto
示例:
2 | #ex2_container { width:200px; background-color:yellow; } |
3 | #ex2_content { margin:0px auto; background-color:gray; color:white; display:table; } |
5 | < div id = "ex2_container" >< div id = "ex2_content" >Hello World</ div ></ div > |
hacks, hacks(小技巧)
有许多 hacks ,负 margin,影子元素 ::before 等。如果你的内容不是固定大小的话,它们大部分是很脆弱的。
translate(-50%,-50%)
用 position 加 translate translate(-50%,-50%) 比较奇特,百分比计算不是以父元素为基准,而是以自己为基准。
参考文章:居中百分比宽高的元素
示例:
2 | #ex3_container { width:200px; height:200px; background-color:yellow; position:relative; } |
3 | #ex3_content { left:50%; top:50%; transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); background-color:gray; color:white; position:absolute; } |
5 | < div id = "ex3_container" >< div id = "ex3_content" >Hello World</ div ></ div > |
这个技巧相当嚣张,同样适用于没固定大小的内容,min-width
,max-height
,overflow:scroll
等。
绝对定位居中
父容器元素:position: relative
7 | top : 0 ; left : 0 ; bottom : 0 ; right : 0 ; |
注意:高度必须定义,建议加 overflow: auto
,防止内容溢出。
视口居中
内容元素:position: fixed
,z-index: 999
,记住父容器元素 position: relative
1 | .Absolute-Center.is-Fixed { |
7 | top : 0 ; left : 0 ; bottom : 0 ; right : 0 ; |
模态窗口实例
响应式
百分比宽高,最大、最小宽度均可以,加 padding 也可以
01 | .Absolute-Center.is-Responsive { |
10 | top : 0 ; left : 0 ; bottom : 0 ; right : 0 ; |
偏移
只要 margin: auto;
在,内容块将垂直居中,top, left, bottom, right 可以设置偏移。
1 | .Absolute-Center.is-Right { |
7 | top : 0 ; left : auto ; bottom : 0 ; right : 20px ; |
溢出
居中内容比父容器高时,防止溢出,加 overflow: auto
(没有任何 padding 时,也可以加 max-height: 100%;
)。
1 | .Absolute-Center.is-Overflow { |
8 | top : 0 ; left : 0 ; bottom : 0 ; right : 0 ; |
调整尺寸
resize 属性可以让尺寸可调。 设置 min- /max- 限制尺寸,确定加了 overflow: auto
。
01 | .Absolute-Center.is-Resizable { |
10 | top : 0 ; left : 0 ; bottom : 0 ; right : 0 ; |
图像
图像同样适用,设置 height: auto;
1 | .Absolute-Center.is-Image { |
6 | top : 0 ; left : 0 ; bottom : 0 ; right : 0 ; |
可变高度
高度必须定义,但可以是百分比或 max-height。不想定义高度的话,用 display: table
(需要考虑 Table-Cell 兼容性)。
1 | .Absolute-Center.is-Variable { |
7 | top : 0 ; left : 0 ; bottom : 0 ; right : 0 ; |
负 margin
确切知道宽高,负 margin 是宽和高的一半。
Table-Cell
参考文章:Flexible height vertical centering with CSS, beyond IE7
结构:
1 | < div class = "Pos-Container is-Table" > |
2 | < div class = "Table-Cell" > |
3 | < div class = "Center-Block" > |
样式:
1 | .Pos-Container.is-Table { display : table; } |
4 | vertical-align : middle ; |
6 | .is-Table .Center-Block { |
FlexBox
参考文章:Designing CSS Layouts With Flexbox Is As Easy As Pie
01 | .Pos-Container.is-Flexbox { |
05 | display : -webkit-flex; |
07 | -webkit-box-align: center ; |
08 | -moz-box-align: center ; |
09 | -ms-flex-align: center ; |
10 | -webkit-align-items: center ; |
12 | -webkit-box-pack: center ; |
13 | -moz-box-pack: center ; |
14 | -ms-flex-pack: center ; |
15 | -webkit-justify- content : center ; |
16 | justify- content : center ; |
参考资料:
* Absolute Horizontal And Vertical Centering In CSS
* Absolute Centering in CSS
* CENTERING ALL THE DIRECTIONS
* Seven Ways of Centering With CSS
* How to Center Anything With CSS
* Vertical Centering With CSS
来源:via