我在使用IE7顯示錶格時出現問題(不用擔心它用於表格數據),其中表格行具有在x軸上重複的背景圖像,表格部分(在這種情況下是TH)具有單獨的背景圖像,根本沒有重複。IE7父母與子女背景圖像的顯示問題
下面是一個例子:
http://cdn.bkit.ca/misc/juniors-table-problem.png
這裏的CSS:
<style>
table,
td,
th,
tr {
border: none;
}
table tr {
border-bottom: 1px solid #BEBEBE;
}
table td {
padding: 7px;
border-left: 1px solid #BEBEBE;
border-right: 1px solid #BEBEBE;
}
table th {
padding: 7px;
text-align: left;
}
table .header {
background-image: url(/images/layout/nav_background.png);
background-position: top;
background-repeat: repeat-x;
height: 37px;
border: none;
margin: 2px;
}
table .header th {
color: white;
font-weight: normal;
text-align: center;
}
table .header th.first {
background-color: transparent;
background-image: url(/images/layout/nav_left.png);
background-repeat: no-repeat;
background-position: top left;
}
table .header th.last {
background-image: url(/images/layout/nav_right.png);
background-repeat: no-repeat;
background-position: top right;
background-color: transparent;
}
</style>
而這裏的HTML:
<table>
<tr class="header">
<th class="first">a</th>
<th>b</th>
<th class="last">a</th>
</tr>
</table>
請不要責備我的CSS,一些它是「噴灑和祈禱」CSS希望修復它。
所以我不能爲我的生活找出爲什麼我有這個問題。 IE8沒有這個問題。
任何想法?