我有一張表,我試圖應用背景圖片,但沒有顯示。圖片的路徑是正確的(螢火蟲說圖像加載)和表的大小是一樣的圖像尺寸(156X46px)爲什麼不顯示錶格背景?
HTML:
<!--hazard icons start here -->
<table class="hazard-table">
<tr>
<td> 1 </td>
<td> 1 </td>
<td> 1 </td>
</tr>
<tr>
<td> 1 </td>
<td> 1 </td>
<td> 1 </td>
</tr>
<!-- hazard icons end here -->
</table>
CSS:
table.hazard-table {
background:url('../images/icon-item.png') no-repeat;
width:156px;
height:46px;
border-width: 1px;
border-spacing: 2px;
border-style: solid;
border-color:#ebebeb;
border-collapse: collapse;
background-color: white;
}
table.hazard-table th {
border-width: 1px;
padding: 1px;
border-style: inset;
border-color: #ebebeb;
background-color: white;
-moz-border-radius: ;
}
table.hazard-table td {
background-position:30 20 ;
border-width: 1px;
padding: 1px;
border-style: inset;
border-color: #ebebeb;
background-color: white;
-moz-border-radius: ;
}
Woops。我完全錯過了背景顏色:白色;不錯的工作:) – zuc0001
我改變了你說的,它仍然無法正常工作。 – Aneesh
嘗試['code'] background-image:url('../ images/icon-item.png');背景重複:無重複;背景顏色:#fff; ['code'] – zuc0001