Hi all,
I am trying to create borders for cells (<td>), but the border-top and border-left properties are not rendered properly (do not display at all) when using table css property "border-collapse:collapse". Is there a workaround for this?
Help appreciated!
Patrick
My html code is:
<table style="width:100%;border-collapse:collapse;">
<tr>
<td style="width:33%;">a</td>
<td style="width:33%;">b</td>
<td style="width:34%;">c</td>
</tr>
<tr>
<td>d</td>
<td style="border:1px solid #888888;">e</td>
<td>f</td>
</tr>
<tr>
<td>g</td>
<td style="border:1px solid #888888;">h</td>
<td>i</td>
</tr>
</table>