php – 无法在css文件中添加bg图像

简单地说,我试图在css代码中添加背景图像.

body {
    line-height: 1;
    background-image:url(../img/bg1.jpg);
}

但是使用localhost / foldername / index.php进行测试时不会出现背景图像

有趣的是,我可以编辑背景颜色,(背景颜色:#993).

我的文件夹树是这样的;

+Main Folder
  +css
     style.css
  +img
     bg1.jpg

你能帮我一下为什么我不能把背景图片添加到css体内.

最佳答案 可能是你错过了”围绕网址.

body {
    line-height: 1;
    background-image: url('../img/bg1.jpg');
}

此外,可能会错过重复.

body {
    line-height: 1;
    background-image: url('../img/bg1.jpg');
    background-repeat: repeat;
}
点赞