Table Border Problems...
I am embarrassed to ask this question, but I just can't seem to find the answer in any of my books.
I have a multi-row table defined with borders and there are two problems:
- When the subsequent row is added to the current table row, the border between the two rows is doubled. BORDER="1" is fine around the edges; there's just this annoying doubled line between the rows. I've tried BORDER="1,1,0,1", but that didn't work at all.
The next roblem I wouldn't have noticed except for the fact that I am setting a background color on the rows:
- When there is no data in the row cell, there are no borders. This leaves a really funky-looking display, because the populated cells have the border, and the unpopulated cells do not: their border is white!
Here's the table definition:
<table align="center"
border="1'
bordercolor="blue"
cellspacing="0"
cellpadding="2"
width="95%">
<tr background="lightblue"
color="black">
<td width="125">
#StructData_Line.Common_Label#
</td>
etc..... through several cells
</tr>
</table>
Any suggestions?
