When i click on my button create it creates a new bootstrap label each time.
But when it does there is no gap as you can see in the image below the labels are bunched up.
Question How can I make it so when I click my create button the labels will have the space between them. jQuery seems to remove the space.
$(document).on("click", "#tag", function(event) {
$('.label-container').append('<div class="label label-default">Default</div>');
});
HTML
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="label-container"></div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<button type="button" id="tag" class="btn btn-default">Create</button>
</div>
</div>
</div>