The way to use background-image in css files with Django

前端 未结 10 1927
离开以前
离开以前 2021-02-05 02:12

I\'d like to use an image file as a background-image on Django. But I do not know how. First, I read this and tried to write like following this in a css file.

10条回答
  •  暖寄归人
    2021-02-05 02:58

    base.html in body tag

        
    
    {% load static %}
    
        
    

    style.css

    #third{
        background: url("/static/img/sample.jpeg")  50% 0 no-repeat fixed;
        color: white;
        height: 650px;
        padding: 100px 0 0 0;   
    }
    

    problem slove

提交回复
热议问题