欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css实现上下左右垂直居中对齐的方式

程序员文章站 2022-04-26 17:07:16
...

1、使用flex布局

<div class="center-item">
<div> 居中块状</div>
</div>

.center-item{
 display:flex;
 align-items:center;
 justify-content:center;
}

2、

.content {
            width: 300px;
            height: 300px;
            position: absolute;
           content: '';
            top: 50%; /*偏移*/
            left:50%;
            transform: translate(-50%,-50%);
        }

先记录到这里后续补充

相关标签: css html html5