我有这个代码:
<table class="pricetable">
<tbody>
<tr style="background-color: #E6E6E6 !important;">
<td rowspan="4" class="iti">
<div class="itemTableImage" style="background: url(http://www.storagerealm.com/images/intel-ssd-520.jpg) no-repeat; background-size: 100% 100%;"></div>
</td>
<th>Capacity</th>
<th>Price</th>
</tr>
<tr style="border: 1px solid black;">
<td class="cell1">128 GB</td>
<td class="cell2">$129.99</td>
</tr>
<tr style="border: 1px solid black;">
<td class="cell1">256 GB</td>
<td class="cell2">$229.37</td>
</tr>
<tr>
<td class="cell1">512 GB</td>
<td class="cell2">$444.99</td>
</tr>
</tbody>
</table>
和 CSS 是:
.pricetable {
width: 100%;
height: 275px;
border: 3px solid black;
margin: 0.5em auto 1em;
text-align: center;
border-collapse:separate;
border-spacing:5px 5px;
}
.iti {
width: 275px;
background-color: #FBF5EF;
}
div.itemTableImage {
width: 97%;
height: 97%;
margin: 0 auto;
box-shadow: 0 0 8px rgba(0, 0, 0, .8);
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
}
我对 Chrome、Safari 和 Opera 上的结果感到满意,但 Firefox 和 IE 无法查看产品图像。
这是我在 Chrome 上得到的结果:
http://oi40.tinypic.com/35hgxuq.jpg
这就是我在 Firefox 上得到的:
http://oi40.tinypic.com/ra3vo4.jpg
感谢您的帮助。