假设结构为此,2个div嵌套

<div class="box">
    <div class="content"></div>
</div>

 

实现方式1:

absolute绝对定位+margin位移实现

这种方式适用于内外2个div的宽高是已知时使用。外层使用相对定位,内层使用绝对定位50%,并使用位移宽高的一半使之居中

.box{
    background-color: yellow;
    width: 300px;
    height: 300px;
    position: relative;
    border: 1px solid red;
}
.content{
    background-color: red;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
}

实现方式2:

transform实现

这种方式,几乎和上一直一样。但是如果子div宽高不定时,也可以实现居中。比第一种好点。

.box{
    background-color: yellow;
    width: 300px;
    height: 300px;
    position: relative;
    border: 1px solid red;
}
.content{
    background-color: red;
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

实现方式3:

flex布局实现,使用justify-content和align-items实现

.box{
    background-color: yellow;
    width: 300px;
    height: 300px;
    display: flex;/*flex布局*/
    justify-content: center;/*水平居中*/
    align-items: center;/*垂直居中*/
    border: 1px solid red;
}
.content{
    background-color: red;
    width: 100px;
    height: 100px;
}

 

版权声明:本文为wuhairui原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/wuhairui/p/10944661.html