CSS 水平垂直居中的幾種實現方法
前言
項目中經常碰到需要實現水平垂直居中的樣式。下面就總結幾種常用的方法
水平對齊+行高
【思路一】text-align + line-height實現單行文本水平垂直居中
<style> .f10 .test{ text-align: center; line-height: 100px; } </style> <div class="case-box f10" data-case="f10"> <div class="test" style="background-color: lightblue;width: 200px;">測試文字</div> </div>
效果展示:
水平+垂直對齊
【思路二】text-align + vertical-align
【1】在父元素設置text-align和vertical-align,並將父元素設置為table-cell元素,子元素設置為inline-block元素
[註意]若兼容IE7-瀏覽器,將結構改為<table>結構來實現table-cell的效果;用display:inline;zoom:1;來實現inline-block的效果
<style> .f11 .parent{ display: table-cell; text-align: center; vertical-align: middle; } .f11 .child{ width: 80px; display: inline-block; } </style> <div class="case-box f11" data-case="f11"> <div class="parent" style="background-color: gray; width:200px; height:100px;"> <div class="child" style="background-color: lightblue;">測試文字</div> </div> </div>
效果展示:
【2】若子元素是圖像,可不使用table-cell,而是其父元素用行高替代高度,且字體大小設為0。子元素本身設置vertical-align:middle
<style> .f12 .parent{ line-height: 200px; text-align: center; font-size:0; } .f12 .child{ vertical-align: middle; } </style> <div class="case-box f12" data-case="f12"> <div class="parent" style="background-color: gray; width:200px;"> <img class="child" src="../../img/head.jpg" style="width:50px;" alt="test"> </div> </div>
效果展示:
相關資料
margin + vertical-align
要想在父元素中設置vertical-align,須設置為table-cell元素;要想讓margin:0 auto實現水平居中的塊元素內容撐開寬度,須設置為table元素。而table元素是可以嵌套在tabel-cell元素裏面的,就像一個單元格裏可以嵌套一個表格
[註意]若兼容IE7-瀏覽器,需將結構改為<table>結構
<style>
.f13 .parent{
display:table-cell;
vertical-align: middle;
}
.f13 .child{
display: table;
margin: 0 auto;
}
</style>
<div class="case-box f13" data-case="f13">
<div class="parent" style="background-color: lightgray; width:200px; height:100px; ">
<div class="child" style="background-color: lightblue;">測試文字</div>
</div>
</div>
效果展示:
絕對定位
【1】利用絕對定位元素的盒模型特性,在偏移屬性為確定值的基礎上,設置margin:auto
<style>
.f14 .parent{
position: relative;
}
.f14 .child{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
height: 50px;
width: 80px;
margin: auto;
}
</style>
<div class="case-box f14" data-case="f14">
<div class="parent" style="background-color: lightgray; width:200px; height:100px; ">
<div class="child" style="background-color: lightblue;">測試文字</div>
</div>
</div>
效果展示:
【2】利用絕對定位元素的偏移屬性和translate()函數的自身偏移達到水平垂直居中的效果
[註意]IE9-瀏覽器不支持
<style>
.f15 .parent{
position: relative;
}
.f15 .child{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
</style>
<div class="case-box f15" data-case="f15">
<div class="parent" style="background-color: lightgray; width:200px; height:100px; ">
<div class="child" style="background-color: lightblue;">測試文字</div>
</div>
</div>
效果展示:
flex
[註意]IE9-瀏覽器不支持
【1】在伸縮項目上使用margin:auto
<style>
.f16 .parent{
display: flex;
}
.f16 .child{
margin: auto;
}
</style>
<div class="case-box f16" data-case="f16">
<div class="parent" style="background-color: lightgray; width:200px; height:100px; ">
<div class="child" style="background-color: lightblue;">測試文字</div>
</div>
</div>
效果展示:
【2】在伸縮容器上使用主軸對齊justify-content和側軸對齊align-items
<style>
.f17 .parent{
display: flex;
justify-content: center;
align-items: center;
}
</style>
<div class="case-box f17" data-case="f17">
<div class="parent" style="background-color: lightgray; width:200px; height:100px; ">
<div class="child" style="background-color: lightblue;">測試文字</div>
</div>
</div>
效果展示:
grid
[註意]IE10-瀏覽器不支持
【1】在網格項目中設置justify-self、align-self或者margin: auto
<style>
.f18 .parent{
display: grid;
}
.f18 .child{
align-self: center;
justify-self: center;
}
</style>
<div class="case-box f18" data-case="f18">
<div class="parent" style="background-color: lightgray; width:200px; height:100px; ">
<div class="child" style="background-color: lightblue;">測試文字</div>
</div>
</div>
效果展示:
【2】在網格容器上設置justify-items、align-items或justify-content、align-content
<style>
.f19 .parent{
display: grid;
/*align-items: center;*/
/*justify-items: center;*/
align-content: center;
justify-content: center;
}
</style>
<div class="case-box f19" data-case="f19">
<div class="parent" style="background-color: lightgray; width:200px; height:100px; ">
<div class="child" style="background-color: lightblue;">測試文字</div>
</div>
</div>
效果展示:
CSS 水平垂直居中的幾種實現方法