I have a .card-footer
with three buttons:
<div class="card-footer">
<button class="btn btn-theme pull-left" type="button" id="toleft"><</button>
<button class="btn btn-theme" type="button" id="more">+</button>
<button class="btn btn-theme pull-right" type="button" id="toright">></button>
</div>
While the #toleft
and #toright
buttons are in the correct positions, the #more
button should be in the center of the footer, but it is currently aligned to the left.
Does anyone have any suggestions on how to center the #more
button?