closing gap

How do I close the gap between these two colomns in between?? (i used a table function to add the pictures in and adjusted padding and boarder to 0 but the gap in between, how do u get rid of it?)

How do I close the gap between these two colomns in between?? (i used a table function to add the pictures in and adjusted padding and boarder to 0 but the gap in between, how do u get rid of it?)
In modern browsers, and with strict DOCTYPEs, images need to be aligned bottom or set to blocks. Adding this rule will likely help:
img {
vertical-align: bottom;
}
And you really should not use tables in a modern web page to display images.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.