I decided to implement a set of round circles connected by a line as outlined in this question. Everything seems to work fine in static HTML, but when I make it dynamic using Angular's ng-repeat, the circles justify left. It can be clearly illustrated by the following jsFiddle: https://jsfiddle.net/1ho1zz59/
<ul class="progress-rnd">
<li ng-repeat="step in steps">
{{step.name}}
</li>
</ul>
Based on that I just have two questions:
- Why is this happening?
- And how do I fix it?
Thanks!