Forum Moderators: open
After I make a modification sometimes the "layout" of the tags changes. It's not that wave anymore and some tags are completely to the left. I also see sites where the html tags are in a mess but the page looks fine.
Does the left space (from the margin of the page to the tag) really matter, is there a rule?
For exampple:
<DIV style="background-color: blue;">
<IMG src="100pxhighimage.gif">
</DIV>
will give a DIV that is 102 pixels high. For some ridiculous reason (using latest IE6, WinXP). However, remove the carriage return between the image tag and the ending div...
<DIV style="background-color: blue;">
<IMG src="100pxhighimage.gif"></DIV>
and all is well.
Anyone know why this is the case? I've been unable to find any CSS (or "old style") stuff to reverse the extra couple of pixels. The extra pixels are in addition to whatever border you might have on your IMG, btw.
Of course, it looks perfect in any other browser.
-fyodor