I have been wondering whether it is achievable to shift each value to the right using only CSS with logic similar to this:
<div ng-show="c.reviewId==item.id" style="margin-left:" . {{$index}}*10 . "px"">
For instance, the desired output could look like:
1.something
2.something
3.something
Is it necessary to rely on javascript/angular for this task?