美文网首页
一个div 在浏览器居中

一个div 在浏览器居中

作者: 方_圆 | 来源:发表于2022-02-15 17:32 被阅读0次

    使用CSS实现

    /*  准备 width: 600px,*height: 700px的div  设置好背景图片颜色 等等

    设置为绝对位置

    .wrap {

                background-image: url('img/2.jpg');

                width: 600px;

                height: 700px;

                margin: auto;

                position: absolute;

                top: 0;

                bottom: 0;

                left: 0;

                right: 0;

            }

    相关文章

      网友评论

          本文标题:一个div 在浏览器居中

          本文链接:https://www.haomeiwen.com/subject/vldllrtx.html