在項目中常常會遇到設置元素水平垂直居中的需求。並且具體的場景也不一樣,因此將我的總結的方法作個彙總,但願對瀏覽者有用。
如下所舉的例子都以一個html爲準,這裏規定好一些公用樣式。html
body { background-color: #efefef; } main { background-color: #fff; padding: 10px; margin:10px 0px; } main div { background-color: #aaf; }
舉例以下:flex
.parent1 { text-align:center; } .child1 { display:inline|inline-block; }
<main class="parent2"> <div class="child2">我是孩子2,我要水平居中</div> </main> .child2 { width:60%; margin:auto; }
<main class="parent4"> <div class="child4">我是孩子4,我要水平居中</div> <div class="child4">我是孩子4,我要水平居中</div> <div class="child4">我是孩子4,我要水平居中</div> </main> .parent4 { display: flex; justify-content: center; } .child4 { margin:10px; }
將line-height和height的值設置爲相同值,code
<main class="parent5"> <div class="child5">我是孩子5,我要垂直居中</div> </main> .child5 { height:50px; line-height: 50px; }
<main class="parent6"> <div class="child6">我是孩子6,我要垂直居中</div> <div class="child6">我是孩子6,我要垂直居中</div> <div class="child6">我是孩子6,我要垂直居中</div> </main> .parent6 { display: table; } .child6 { display: table-cell; border:2px solid #000; vertical-align: middle; }
<main class="parent7"> <div class="child7">我是孩子7,我要垂直居中</div> </main> /*若是知道子元素寬高*/ .parent7 { position: relative; height: 100px; } .child7 { position: absolute; top:50%; height:60px; margin-top:-30px; } /*若是不知道子元素寬高*/ .parent7 { position: relative; height: 100px; } .child7 { position: absolute; top:50%; transform: translateY(-50%); }
<main class="parent8"> <div class="child8">我是孩子8,我要垂直居中</div> </main> .parent8 { height: 200px; display: flex; flex-direction: column; justify-content: center; }
<main class="parent9"> <div class="child9">我是孩子9,我要水平垂直居中</div> </main> /*若是不知道子元素寬高*/ .parent9 { position: relative; height: 150px; } .child9 { position: absolute; top:50%; left:50%; transform: translate(-50%,-50%); } /*若是知道子元素寬高*/ .parent9 { position: relative; height: 150px; } .child9 { position: absolute; top:50%; left:50%; height:60px; width:100px; margin-left:-50px; margin-top:-30px; }
.parent10 { height: 200px; display: flex; flex-direction: column; justify-content: center; } .child10 { margin: auto; }