设置登录html背景 background-image: url();

background-image: url(图片的相对路径);
如:
background-image: url(../static/images/背景.jpg);
<style>
    body{
        background-image: url(../static/images/背景.jpg);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
</style>

如果觉得文章不错,可以分享给其他人哟~
原文地址:https://www.cnblogs.com/hany-postq473111315/p/14531790.html