css背景页面铺满屏幕

注:仅用于记录学习笔记

1.css背景页面铺满屏幕

body {
        background: linear-gradient(#e66465, #9198e5) no-repeat;
        background-attachment: fixed; /* 背景相对于浏览器窗口固定 */
    }

css背景页面铺满屏幕_第1张图片

属性解释:

background:

你可能感兴趣的:(css,前端,html)