scroll down div from component angular

Solutions on MaxInterview for scroll down div from component angular by the best coders in the world

showing results for - "scroll down div from component angular"
Neve
08 Feb 2018
1<div style="overflow: scroll; height: xyz;" #scrollMe [scrollTop]="scrollMe.scrollHeight">
2    <div class="..." 
3        *ngFor="..."
4        ...>  
5    </div>
6</div>
7