CSS 实现background-image背景图片全屏铺满自适应

.container {
            height: 100%;
            {#background-image: linear-gradient(to top, #fbc2eb, #a6c1ee);#}
            background-image: url("/static/img/index_bg.jpg");
             /* 背景图垂直、水平均居中 */
            background-position: center center;
            /* 背景图不平铺 */
            background-repeat: no-repeat;
            /* 当内容高度大于图片高度时,背景图像的位置相对于viewport固定 */
            background-attachment: fixed;
            /* 让背景图基于容器大小伸缩 */
            background-size: cover;
            /* 设置背景颜色,背景图加载过程中会显示背景色 */
            background-color: #464646;
        }

你可能感兴趣的:(HTML,html,html5,css)