Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

a question about html tables

Status
Not open for further replies.

OhioSteve

MIS
Mar 12, 2002
1,352
0
0
US
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??

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>
 
Not sure if this answers your problem but have you tried border collapse?
Code:
border-collapse: collapse;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top