Below is the particular issue I am aiming to address.
<div class="row" style="overflow:hidden;">
<app-car
*ngFor="let car of cars; trackBy: trackByFunction"
[car]="car"
>
</app-car>
</div>
<button> More <button>
The goal is to display the 'More' button only if there are additional cars hidden due to the overflow:hidden attribute applied to the parent container.