Forum Moderators: not2easy
HTML (4.01 Strict):
[pre]
<table>
<tr>
<td class="title">one</td>
<td rowspan="2" class="date">three</td>
</tr>
<tr>
<td class="subtitle">two</td>
</tr>
<tr>
<td class="title">one</td>
<td rowspan="2" class="date">three</td>
</tr>
<tr>
<td class="subtitle">two</td>
</tr>
</table>
[/pre]
CSS:
[pre]
table {
border-collapse: collapse;
}
td.title, td.date {
border-top: 1px solid black;
}
td.subtitle, td.date {
border-bottom: 1px solid black;
}
[/pre]
The problem is that the border disappears between the 'subtitle' of the first entry and the 'title' of second.
It re-appears if I use the the border-collapse:separate model and it is fine in IE6 and NN7.
All html and css is validated and is correct.
Any suggestions?