This is the code I am currently using
.tag-container.bottom-border.col-middle
h1.text-center {{ tag.name }}
button.btn.btn-follow.pull-right(ng-hide="hasFollowed" ng-click="tagArticles.followTag()") Follow
I am trying to align the tag name in the middle and the button on the right, but it is not displaying correctly. What is the best way to structure these two parts? Which CSS should I apply?
Thank you.
Update
Here is a simplified version of the basic HTML code
<row>
<div>
<h1> Tag name</h1>
</div>
<div class="pull-right">
<button>Follow</button>
</div>
</row>
Feel free to make any modifications. Thank you