I created a repeating element that stacks multiple items on top of each other.
While this functionality works as expected in modern browsers, it encounters issues in IE8 where the style attribute is not parsed correctly (potentially due to invalid content within the style attribute).
The problematic element in question is:
<div class="leaf" ng-repeat="j in getNumber(number2) track by $index"
style="bottom: [[$index * 3 + 20]]px"></div>
Has anyone encountered a similar issue and found a solution or alternative method to achieve this?