CSS Background Image Not Displaying

后端 未结 15 2063
[愿得一人]
[愿得一人] 2020-12-16 09:20

I have an HTML file with a subdirectory called img with an image called debut_dark.png. In my CSS file, I have:

body { 
    backgro         


        
15条回答
  •  死守一世寂寞
    2020-12-16 10:02

    You should use like this:

    
            body { 
                background: url("img/debut_dark.png") repeat 0 0;
            }
    
            body { 
                background: url("../img/debut_dark.png") repeat 0 0;
            }
    
            body { 
                background-image: url("../img/debut_dark.png") repeat 0 0;
            }
    
    

    or try Inspecting CSS Rules using Firefox Firebug tool.

提交回复
热议问题