When I am puttting 2 images side by side, I am getting some space around the images in IE but its fine with Mozilla.
Can any one plz suggest how to remevo white space around image in IE.
I have an odd feeling that it’s because of the spacing problem, instead of writing your div tags in two line, write them one after another without space in between like this:
Thanks, just came across the same problem and found this thread and this helped me get around the problem I was facing. It’s pretty dumb how the way I want to write my code has to be changed so it displays properly! Hopefully they’ll fix this sometime but it does it in all the latest browsers still so the problem will still be around for a while yet!
display: block on image (will have issue putting images side by side)
eliminate ALL white space between end of image and beginning of next open html tag
This issue occurs becuase IE likes to render empty white space as a text node element even if no other characters follow. Go figure… another annoying IE issue.