我一直在爭取這一段時間,無法弄清楚爲什麼我會在IE7中看到背景的一個像素(其他瀏覽器正常工作)。背景中的一個像素顯示在IE7中的表格
下面是一個簡單的例子,嘗試在IE7:
鏈接的jsfiddle:http://jsfiddle.net/PstEk/
<html>
<head>
<style>
.test {
border-width: 0px;
border-spacing: 0px;
border-style: outset;
border-color: red;
border-collapse: collapse;
background-color: blue;
}
.test th{
border-width: 0px;
padding: 0px;
border-style: none;
border-color: red;
background-color: #fff5ee;
}
.test td {
border-width: 0px;
padding: 0px;
border-style: none;
border-color: red;
background-color: #e1edf3;
}
</style>
<body>
<table class="test">
<tr>
<th>Test test</th>
<th>Test test</th>
<th>Test test</th>
<th>Test test</th>
<tr>
<tr>
<td>Test test</td>
<td>Test test</td>
<td>Test test</td>
<td >Test test </td>
<tr>
<tr>
<td>Test test</td>
<td>Test test</td>
<td>Test test</td>
<td>Test test</td>
<tr>
</table>
</body>
</html>
您沒有關閉標籤? – Christophe 2012-02-24 18:08:43
非常感謝,這太愚蠢了,花了半天的時間試圖找出答案! – 2012-02-24 18:09:45
@Christophe:你應該做出答案! – Jawad 2012-02-24 18:14:08