After coming across a tutorial on creating round circles connected by a line in CSS, I decided to implement it myself. Interestingly, everything worked perfectly fine when I tested it with static HTML. However, when I tried to make it dynamic using Angular's ng-repeat feature, the circles ended up justified left instead of aligning properly. To better illustrate this issue, I created a jsFiddle which can be found here: https://jsfiddle.net/1ho1zz59/
<ul class="progress-rnd">
<li ng-repeat="step in steps">
{{step.name}}
</li>
</ul>
This situation has led me to ponder two questions:
- What is causing this unexpected behavior?
- How can I go about fixing it?
Any insights or guidance would be greatly appreciated. Thank you!