0
我使用express + node.js + Jade。我寫了一個玉文件,但我不能讓背景圖像出現。我打得四處體類,它似乎文本顏色的工作,但在玉石中使用背景圖像
body {
font-family: "Josefin Slab" !important;
background-image: url("concursum-bg.jpg");
background-size: cover;
color: white;
text-align: center;
background-repeat: no-repeat;
}
我確信該圖像是在同一文件夾,因爲這玉文件時,它不使用背景圖片。
當我查看網頁源代碼的HTML是:
body {
font-family: "Josefin Slab" !important;
background-image: url("concursum-bg.jpg");
background-size: cover;
color: white;
text-align: center;
background-repeat: no-repeat;
}
我在本地主機上運行此,如果該事項。
會在哪裏我創建了 「公共」 目錄?在視圖所在的目錄中? – SocketPhys
它的工作原理,但我想知道爲什麼快遞無法在視圖目錄中提供服務? – SocketPhys
@SocketPhys Express默認情況下不會這樣做,而且它確實沒有任何理由。 – Aehmlo