美文网首页
css 背景图片随屏幕大小自适应全屏

css 背景图片随屏幕大小自适应全屏

作者: 努力学习的小丸子 | 来源:发表于2020-02-26 14:07 被阅读0次

    如何设置背景图片填充整个屏幕

            background: url(../assets/img/showBg.png) no-repeat top center;
            background-size: cover;
            background-attachment: fixed;
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
    

    相关文章

      网友评论

          本文标题:css 背景图片随屏幕大小自适应全屏

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