DIV水平垂直居中父级DIV方法

2025-10-20 20:04:43

1、效果如下:中间的div会水平垂直居中绿色的div盒子

DIV水平垂直居中父级DIV方法

2、html代码如下:

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

3、css代码如下:

.box{    position: relative;    width: 600px;    height: 600px;    background-color: green;    margin: 20px auto;}.box .child{    position: absolute;    left: 0;    right: 0;    bottom: 0;    top: 0;    margin: auto;    width: 300px;    height: 300px;    background-color: pink;}

DIV水平垂直居中父级DIV方法

4、父DIV必须加上相对定位position:relative;

需要居中的DIV使用绝对定位position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;

当然还有其他方法可以实现,这只是其中的一种。

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢