Reputation: 41
I am trying to center a glyphicon inside of a panel using Bootstrap 3. As it currently stands, the icon is positioned on the left of the panel.
Any advice is greatly appreciated.
My code:
<div class="panel-body">
<span class="glyphicon glyphicon-asterisk" aria-hidden="true"></span>
Upvotes: 0
Views: 1115
Reputation: 207913
You can add Bootstrap's text-center
class to your div:
<div class="panel-body text-center">
<span class="glyphicon glyphicon-asterisk" aria-hidden="true"></span>
</div>
Upvotes: 1