I know that when using inline-block elements you get unwanted white space.
But why in this example have these two inline link elements got a slight space between them?
You can see they are on two lines and if I put them side by side and remove the space in my text editor the space is then gone, but surely it should ignore the space in my text editor?
<body>
<a href="#">link 1</a>
<a href="#">Link 2</a>
</body>
This has space between the links.
<body>
<a href="#">link 1</a><a href="#">Link 2</a>
</body>
This doesn't.
Thanks.