New Line Between Anchors In Html Source Creates Empty Space In Browser
Possible Duplicate: How do I remove the visibility of spaces between inline elements? I usually format my source code to be easy read by humans, AFAIK browsers remove any \n\t c
Solution 1:
Anchors are inline elements. If you add a white-space (space, tab, newine, ..) between the elements, a gap will appear.
Depending on the situation, you can use either of the following methods to get rid of the gap:
Post a Comment for "New Line Between Anchors In Html Source Creates Empty Space In Browser"