嘗試使用Jekyll創建我的第一個博客(練習我的CSS技巧),它一直很好,但對於幾個打嗝。Jekyll CSS背景圖片
首先,背景圖片沒有顯示出來。這是我目前的樣式表的樣子:
body {
font: 16px/1.5 verdana, helvetica-neue, helvetica, arial, san-serif;
background: black;
background-image: url(../img/background.jpg);
color: #ececec;
padding: 0;
margin: 0;
}
文件結構是這樣的:
site
_includes
_layouts
css
- style.css
img
- background.jpg
我這種方式鏈接到我的樣式表在default.html中:
<link rel="stylesheet" type="text/css" href="/css/styles.css">
當我導航到loalhost時仍然沒有顯示圖像:4000
有人能幫我嗎通過指出我錯過/俯視。
謝謝
可能會被默認樣式覆蓋。嘗試使用'important' –
如果使用'url(/img/background.jpg)'或'url(img/background.jpg)',會發生什麼? –