4

My previous question was answered here: Two floating divs side by side, same height

My problem: Someone supplied an example here: http://jsfiddle.net/s7ufg/18/

How can I remove the extra space below the image?

Community
  • 1
  • 1
user1040259
  • 6,119
  • 13
  • 43
  • 62

2 Answers2

4

Add vertical-align:top to your img rule:

img {
    max-width: 100%;
    height: auto;
    width: auto;   
    vertical-align:top;
}
​

jsFiddle example

j08691
  • 197,815
  • 30
  • 248
  • 265
4

display:block; to the image solve it

img {
    display:block;
    max-width: 100%;
    height: auto;
    width: auto;   
}

jsFiddle example

NullPoiиteя
  • 55,099
  • 22
  • 123
  • 139