HTML and CSS Background-image is not showing up

后端 未结 5 2039
太阳男子
太阳男子 2021-02-20 12:55

I already double checked my URL, and the name of the files, but I can\'t seem to get the image to show up. Why is it like that? Here\'s my code (take note the

5条回答
  •  南方客
    南方客 (楼主)
    2021-02-20 12:59

    The browser will be searching for the image within your stylesheet directory at the moment.

    Might be worth trying changing

    background-image: url(images/background.gif);
    

    to

    background-image: url(/images/background.gif);
    

    which might be the cause of the problem.

提交回复
热议问题