【发布时间】:2021-09-11 06:14:13
【问题描述】:
这是我在 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>
下面可以看到home.component.css
.scrollmenu{
width:100%;
overflow: auto;
white-space: wrap;
}
.matchip {
display: inline-block;
}
但这不起作用。我需要显示我的 mat-chips 列表可水平滚动。谢谢。
【问题讨论】:
标签: css angular angular-material angular-components horizontal-scrolling