<ul class="nav nav-pills nav-stacked" style="list-style: none">
<li *ngFor="#el of dragZoneElems; #idx = index">
<h4 style="position: fixed; top:'idx'*10" [dragResponder]="el">{{el.first}} {{el.last}}</h4>
</li>
</ul>
I am looking to fix the position of the h4 elements while still displaying them in a top-down order. These elements need to be draggable, hence the requirement for position:fixed. Any ideas on how I can achieve this? The current code snippet is not working for me.