Originally posted by OptimusG4:
Well, to my own amazement, I had to reduce the size of a table cell by 1 pixels, but I'm wondering if theres a better way to do it. If not, consider this topic closed
Do you have a valid DOCTYPE declaration? If you do, take the code back to your original specs, but add the following to your CSS:
img { display: block }
Then try it in Mozilla. It's a known bug with Mozilla that images add extra whitespace if you have a well-formed DOCTYPE.
Of course, if you actually have images that you want to display inline, then you need to add an extra line again:
.inline { display: inline }
and then add that class to your inline images:
< img class="inline" src="blah.png" etc.. />
Cheers