Getting those tables nice and tight

ive got a table with four cells. ive put a link to an image in each cell. fine so far. ive set the border to “0”, the cell spacing to “0” and cell padding to “0” but there is still a tiny gap inbetween pictures. how do i solve this?

paste ur source. Also, check the images to make sure that the heights & widths add up.

you mean paste the link of the image into a cell?
thats what i did.

this is it http://www31.brinkster.com/asshat/ack.html
have a look at the source and tell me what you think

Well first off you were missing the cellpadding attribute. Second off, in your HTML you had set the td height for the first row to 104 but the Image was 100px tall.

Here is what the code should look like


	<TABLE cellspacing="0" cellpadding="0" border="0" height="200">
		<TR>
			<TD height="100"><IMG src="http://www31.brinkster.com/asshat/sq1.jpg" width="100" height="100"></TD>
			<TD height="100"><IMG src="http://www31.brinkster.com/asshat/sq1.jpg" width="100" height="100"></TD>
		</TR>
		<TR>
			<TD height="7"><IMG src="http://www31.brinkster.com/asshat/sq1.jpg" width="100" height="100"></TD>
			<TD height="7"><IMG src="http://www31.brinkster.com/asshat/sq1.jpg" width="100" height="100"></TD>
		</TR>
	</TABLE>

You still need to clean it up a bit ie (height=“7”) and stuff like but it will display correctly now.

ok cheers.
this is what it looks like now http://www31.brinkster.com/asshat/ack.html

there is still awhite border though.

umm because there is a white border on ur images…

lol. i’ll mess around with different pics , but the actual pics have a thin black border.

k, i changed the image http://www31.brinkster.com/asshat/ack.html

and the borders go bye-bye. :p:

holla