For a while now, I've been using ng-repeat to create tables. However, I have come across an issue that I've never encountered before.
ng-repeat="users in [].constructor(10) track by $index"
Essentially, all the elements generated by ng-repeat are being ignored by some CSS (specifically, borders of the container). The divs below, which have a relative position, are ignoring the newly created elements and positioning themselves right after the original element repeated with ng-repeat.
Why is this happening?
I used ng-repeat in the same table above for rows, and I didn't face this problem. Any insights?
Thank you for any help or advice you can provide.