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

CSS设置div在屏幕中居中

程序员文章站 2022-05-01 19:18:19
...
div{
        text-align: center;
        margin:auto;
        position: absolute;
        left: 0;
        right: 0;
        top:0;
        bottom: 0;
        height: 70%;
        width: 50%;
        background-color: #D1EEEE;
}