Feedback on: irt.org FAQ Knowledge Base Q2053
Worth:
Worth reading
Length:
Too short
Technical:
Just right
Comments:
OK, so why when I use the code below am I able to see the TD bgcolors (blue and purple) - given that the cell heights are set to the same heights as the images in the cells?
The images seem to abut properly in the horizontal direction but not in the vertical direction.
<body bgcolor="#FF0000" leftmargin=0 topmargin=0 marginwidth="0" marginheight="0">
<table cellspacing="0" cellpadding="0" border="0" width="40">
<tr>
<td height="20" bgcolor="#0000FF">
<img src="/1pixffc.gif" width=20 height=20 border=0 alt="">
</td>
<td bgcolor="#0000FF">
<img src="1pix066.gif" width=20 height=20 border=0 alt="">
</td>
</tr>
<tr>
<td height="20" bgcolor="#FF00FF">
<img src="1pix066.gif" width=20 height=20 border=0 alt="">
</td>
<td bgcolor="#FF00FF">
<img src="1pixffc.gif" width=20 height=20 border=0 alt="">
</td>
</tr>
</table>
</body>
Worth:
Length:
Technical:
Comments:
When you close the table cell, it automatically makes a double space under it. Is there a style call you can incorporate in the table tag to prevent this?