here is my code in home.component.html
<div class="scrollmenu" >
<mat-chip-list>
<mat-chip *ngFor="let category of categories" class="matchip">
{{ category.cat_name }}
</mat-chip>
</mat-chip-list>
</div>
below you can see home.component.css
.scrollmenu{
width:100%;
overflow: auto;
white-space: wrap;
}
.matchip {
display: inline-block;
}
but this is not working.I need to show my mat-chips list horizontally scrollable. Thank you.