我无法在express中为section标签创建背景图片。我尝试了几种不同的途径,包括:
#image{
background: url('/images/beachPierPanorama.jpg') 50% 0 no-repeat fixed;
}
#image{
background: url('./images/beachPierPanorama.jpg') 50% 0 no-repeat fixed;
}
#image{
background: url('../images/beachPierPanorama.jpg') 50% 0 no-repeat fixed;
}
这是我的文件目录的图片。您在上面看到的CSS位于style.css中,我正在尝试引用images文件夹中的图像:
![IMG]http://i58.tinypic.com/dcbrkx.png[/IMG]
答案 0 :(得分:0)
根据图片,/images
目录位于/public
所以
background: url('../public/images/beachPierPanorama.jpg')....
应该始终有效。