css设置背景图片全屏显示

body,html设置

html,body{
    height: 100%;
}

图片所在div设置

.wrapper{
    background:#000000 url("../../img/login/login.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

你可能感兴趣的:(前端开发笔记)