I have ng-repeat that creates div for each occurrence. I want to set the size in % dynamically that it will spread through the whole parent element.
Something like:
ng-repeat="widget in widgets"
style="display:inline-block;
border:none;width:100/{{widgets.length}}%"
And I want to do it in my html and not in js
Is it at all possible?