I'm implementing Bootstrap 4 inline-block links and they seem to have an invisible margin between them, which I can't seem to remove.
Screenshot:
Codepen here.
Code:
<div>
<!-- There shoud be NO MARGIN between the links -->
<a href="#" class="btn btn-danger">
Button A</a>
<a href="#" class="btn btn-secondary like-button">
Button B
</a>
</div>
How do I get rid of these invisible margins?
The problem turned out to be the line break in the HTML, between the links. I'm not sure if it's intentional or some kind of browser bug. Anyways.. Removing the line break works: