Bootstrap glyphicon après la position

Le problème

Je veux afficher un glyphicon icône d'après un texte. Dans la documentation, il y a seulement avant des exemples comme vous pouvez le voir ici: http://getbootstrap.com/components/#glyphicons-examples

<div class="glyphicon glyphicon-chevron-right">Next</div>

Mes solutions

Solution 1

<div>Next<span class="glyphicon glyphicon-chevron-right"></span></div>

Solution 2

#next.custom-chevron-right:after {
    font-family: 'Glyphicons Halflings';
    content: "\e080";
}
<div id="next" class="glyphicon custom-chevron-right">Next</div>

Source de l'exemple: bootply

Ma question

Est-il une meilleure façon de la faire juste avec bootstrap classes?

source d'informationauteur aleixfabra