I've noticed that if I have two links :
<a href="#">Text</a>
<a href="#">Text</a>
They are not joined in the browser, looks like there is a space between them.
But if I wrote them in one line :
<a href="#">Text</a><a href="#">Text</a>
there is no space. Is there a way to delete that space? Or I need to write all links (or better, all inline elements) in one line?