CSS Background Image Not Displaying

后端 未结 15 2042
[愿得一人]
[愿得一人] 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:08

    Make sure your body has a height, f.ex:

    body { 
        background: url(/img/debut_dark.png) repeat;
        min-height: 100%;
    }
    

提交回复
热议问题