我試圖在每個表格單元格中使用超鏈接製作翻轉圖像,但由於某些原因,我製作的每個後續單元格都覆蓋了單元格之前的它:。每個細胞變成重複的圖像。代碼在我第一次編寫時運行良好;這完全是出於藍色。以下是兩個相鄰單元格的圖像代碼 - 出於某種原因,我發生了什麼,第二單元格也一直顯示爲第一單元格圖像。在單元表中覆蓋圖像覆蓋以前的單元格圖像 - 重複表格中的圖像
<table style="width: 655px; height: 630px; border: 2px dotted black;">
<tbody>
<tr align="center">
<td style="border: 2px dotted black; width: 220px; height: 210px;"> <style type="text/css">
.rollover a {display: block;
width: 210px;
height: 155px;
background-image: url(IMG1a);}
.rollover a:hover{display: block;
width:210px;
height: 155px;
background-image: url(IMG1b);}
</style><div class="rollover"> <a href="link1"></a></div></td>
<td style="border: 2px dotted black; width: 220px; height: 210px;"> <style type="text/css">
.rollover a {display: block;
width: 210px;
height: 155px;
background-image: url(IMG1a);}
.rollover a:hover{display: block;
width:210px;
height: 155px;
background-image: url(IMG1b);}
</style><div class="rollover"> <a href="link1"></a></div></td></tr></tbody></table>
你能發佈完整的相關HTML嗎? –
我將它改爲包含表格HTML!這有幫助嗎? – user1809757