问答题1077/1587CSS 垂直居中有哪些实现方式?

难度:
2022-03-06 创建

参考答案:

我们在布局一个页面时,通常都会用到水平居中和垂直居中,处理水平居中很好处理,不外乎就是设定margin:0 auto;或是text-align:center;,就可以轻松解决掉水平居中的问题,但一直以来最麻烦对齐问题就是「垂直居中」,以下将介绍几种单纯利用CSS垂直居中的方式,只需要理解背后的原理就可以轻松应用。

下面为公共代码:

1<div class="box"> 2 <div class="small">small</div> 3</div>
1.box { 2 width: 300px; 3 height: 300px; 4 background: #ddd; 5} 6.small { 7 background: red; 8} 9

absolute + margin实现

方法一:

1.box { 2 position: relative; 3} 4.small { 5 position: absolute; 6 top: 50%; 7 left: 50%; 8 margin: -50px 0 0 -50px; 9 width: 100px; 10 height: 100px; 11}

方法二:

1.box { 2 position: relative; 3} 4.small { 5 position: absolute; 6 top: 0; 7 right: 0; 8 bottom: 0; 9 left: 0; 10 margin: auto; 11 width: 100px; 12 height: 100px; 13}

absolute + calc 实现

1.box { 2 position: relative; 3} 4.small { 5 position: absolute; 6 top: calc(50% - 50px); 7 left: calc(50% - 50px); 8 width: 100px; 9 height: 100px; 10}

absolute + transform 实现

1.box { 2 position: relative; 3} 4.small { 5 position: absolute; 6 top: 50%; 7 left: 50%; 8 transform: translate3d(-50%,-50%,0); 9 width: 100px; 10 height: 100px; 11} 12

转行内元素

1.box { 2 line-height: 300px; 3 text-align: center; 4 font-size: 0px; 5} 6.small { 7 padding: 6px 10px; 8 font-size: 16px; 9 display: inline-block; 10 vertical-align: middle; 11 line-height: 16px; 12}

table-cell

.box {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.small {
    padding: 6px 10px;
    display: inline-block;
}

flex

方法一:

1.box { 2 display: flex; 3 justify-content: center; 4 align-items: center; 5}

方法二:

1.box { 2 display: flex; 3 justify-content: center; 4} 5.small { 6 align-self: center; 7}

08 grid

网格布局(Grid)是最强大的 CSS 布局方案。

它将网页划分成一个个网格,可以任意组合不同的网格,做出各种各样的布局。以前,只能通过复杂的 CSS 框架达到的效果,现在浏览器内置了。

下面是4种使用grid实现水平垂直居中的例子。

方法一:

1.box { 2 display: grid; 3 justify-items: center; 4 align-items: center; 5}

方法二:

1.box { 2 display: grid; 3} 4.small { 5 justify-self: center; 6 align-self: center; 7}

方法三:

1.box { 2 display: grid; 3 justify-items: center; 4} 5.small { 6 align-self: center; 7} 8

方法四:

1.box { 2 display: grid; 3 align-items: center; 4} 5.small { 6 justify-self: center; 7}

最近更新时间:2024-07-19

赞赏支持

预览

题库维护不易,您的支持就是我们最大的动力!