Forum Moderators: open
Thanks
<table><tr><td><img src="i/aboutbt.jpg"></td></tr>
<tr><td><img src="i/designbt.jpg"></td></tr>
<tr><td><img src="i/hostingbt.jpg"></td></tr>
<tr><td><img src="i/contactbt.jpg"></td></tr>
</table>
You can add the following CSS:
td img { vertical-align: bottom }
or:
td img { display: block }
Images, Tables, and Mysterious Gaps [devedge.netscape.com] on Netscape Devedge has an article about it.
table {
border-collapse:collapse;
}
td {
border:none;
margin:0;
padding:0;
}
Advantage: sorts out all your tables in one go rather than specifying <table border="0" cellpadding="0" cellspacing="0" > for each of them.
Note the nice symmetry with the HTML solution..
border="0" -> border:none;
cellpadding="0" -> padding:0;
cellspacing="0" -> margin:0;