1
我有一個表格單元,在那個單元格中我想在2個不同的位置顯示2個不同的背景圖像。我使用在IE中使用CSS顯示兩個背景圖像6
<table border="0" cellspacing="0" cellpadding="0" width="100" height="100">
<tr>
<td id="arrow" class="top"> </td>
</tr>
<tr>
<td id="arrow" class="mid"> </td>
</tr>
<tr>
<td id="arrow" class="bottom"> </td>
</tr>
</table>
的CSS是:
td#arrow.top{
background-image: url('images/pic1.jpg'), url('images/pic2.jpg');
background-position: left top, center center;
}
如何顯示使用CSS 2個獨立的背景圖像,使得它們在IE中顯示6.
IE6和花哨的CSS,urgh ... – Ben
有一個簡單的辦法有2個背景圖片在IE 6? – user1212