JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://rawgit.com/janl/mustache.js/master/mustache.js"></script>
<h1>With indent</h1>
<a href="testing">
<div class="text">testing some tests</div>
</a>
<a href="testing">
<div class="text">testing some tests</div>
</a>
<hr>
<h1>Without indent</h1>
<a href="testing"><div class="text">testing some tests</div></a><a href="testing"><div class="text">testing some tests</div></a>
CSS
.text{
height: 99px;
width: 141px;
background-color: red;
display: inline-block;
}
a{
margin-right: 12px;
color: black;
}