Skip to main content
vanessah99475283
Known Participant
December 30, 2016
Answered

closing gap

  • December 30, 2016
  • 2 replies
  • 1042 views

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?)

This topic has been closed for replies.
Correct answer ALsp

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.

2 replies

ALsp
ALspCorrect answer
Legend
December 30, 2016

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.

vanessah99475283
Known Participant
December 30, 2016

Thanks!

Legend
December 30, 2016

post a link to the page or the source code, then you will get some replies ...

Paul-M - Community Expert