我是新來的CSS,當我試圖插入background-image
它不會顯示。CSS background-image not showing
HTML:
<div id="logo"></div>
CSS:
#logo {
background-image: url(../images/logo.png);
background-repeat: no-repeat;
width: 376px;
height: 81px;
margin-top: 28px;
margin-left: 128px;
}
在船尾添加分號請確保此圖像路徑正確 – bugwheels94 2012-07-24 11:36:06
使用Chrome檢查器打開您的頁面,然後單擊圖像網址以檢查它的工作原理。 – 2012-07-24 11:40:13
確保你的圖片路徑是正確的,正如其他人所說,請在你的寬度和高度屬性後添加分號。 – 2012-07-24 11:41:46