<span class="glyphicon glyphicon-chevron-down" aria-hidden="true" style="align:center"></span>
I can see the icon but it is off to the left. I have tried text-align and aligh="center" but nothing seems to work
<span class="glyphicon glyphicon-chevron-down" aria-hidden="true" style="align:center"></span>
I can see the icon but it is off to the left. I have tried text-align and aligh="center" but nothing seems to work
Wrap the span with a container and set it's text-align to center.
.parent-container { text-align:center; }
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<div class="parent-container">
<span class="glyphicon glyphicon-chevron-down" aria-hidden="true"></span>
</div>