水平垂直居中的四种方式

简介: 水平垂直居中的四种方式

html 布局结构如下

<div class="outerBox">
    <div class="innerBox"></div>
</div>

第一种 使用flex

.outerBox {
    height: 400px;
    background-color: rgb(12, 243, 232);
    display: flex;
    justify-content: center;
    align-items: center;
}
.innerBox {
    width: 200px;
    height: 200px;
    background-color: pink;
}

第二种 position + margin:auto

.outerBox {
    height: 400px;
    background-color: rgb(12, 243, 232);
    position: relative;
}
.innerBox {
    width: 200px;
    height: 200px;
    background-color: pink;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

第三种 position + margin负边距

.outerBox {
    height: 400px;
    background-color: rgb(12, 243, 232);
    position: relative;
}
.innerBox {
    width: 200px;
    height: 200px;
    background-color: pink;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -100px;
    margin-top: -100px;
}

第四种 transform: translate

.outerBox {
    height: 400px;
    background-color: rgb(12, 243, 232);
    position: relative;
}
.innerBox {
    width: 200px;
    height: 200px;
    background-color: pink;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

遇见问题,这是你成长的机会,如果你能够解决,这就是收获。

相关文章
|
6月前
div盒子垂直居中的3种方法
div盒子垂直居中的3种方法
50 2
|
3月前
|
前端开发 容器
实现弹性盒子(Flexbox)中一行多个 div 平摊排列
这篇文章介绍了如何使用CSS Flexbox布局来实现一行内多个div的自动平摊排列,包括水平均匀分布和非均匀分布排列的方法,并提供了相应的HTML和CSS代码示例。
实现弹性盒子(Flexbox)中一行多个 div 平摊排列
|
4月前
|
前端开发
css实用技巧——利用内联元素的padding实现高度可控的分隔线
css实用技巧——利用内联元素的padding实现高度可控的分隔线
26 2
|
6月前
|
前端开发
css flex布局两个元素水平居中垂直居中
css flex布局两个元素水平居中垂直居中
101 1
|
前端开发
前端水平垂直居中实现
前端水平垂直居中实现
|
6月前
|
前端开发 容器
css中元素水平居中的方式
css中元素水平居中的方式
70 0
|
前端开发
如何实现CSS中flex布局最后一行左对齐?
前言 flex布局目前已经非常流行了,它基本上可以完成大部分的布局需求。早一些的float布局、表格布局等等便没有那么受欢迎了。但是任何事物都不是完美的,flex布局也一样,它也有瑕疵,就比如我们今天所要讲的flex布局中最后一行对齐问题。
2110 0
如何实现CSS中flex布局最后一行左对齐?
div盒子水平垂直居中以及表格的居中的方法
div盒子水平垂直居中以及表格的居中的方法
146 0
|
前端开发 容器
CSS布局的三种方式
CSS布局的三种方式:1.绝对定位 2.相对定位 3.浮动
113 0
CSS布局的三种方式