I am creating an html table. The walls of some cells should exist, but be invisible to the user. Currently, my table ALMOST works. I only have one problem. When an invisible wall intersects a normal wall, it causes a tiny break in the visible wall.
Can you help me to fix this issue??
Can you help me to fix this issue??
Code:
<html>
<head>
</head>
<body>
<table border="1" width="100%" height="400">
<tr>
<td rowspan="3" width="100">a</td>
<td height="80" style="border-bottom-width:0px">b</td>
</tr>
<tr>
<td style="border-top-width:0px; border-bottom-width:0px">c</td>
</tr>
<tr>
<td height="80" style="border-top-width:0px">d</td>
</tr>
</table>
</body>
</html>