如何在Material Angular中创建一个水平滚动列表,该列表可以水平滚动而不占用多行?
答案 0 :(得分:1)
此代码解决了我们的问题:
(我们还在组件中使用了encapsulation: ViewEncapsulation.None
)。
::-webkit-scrollbar {
height: 0;
}
div.mat-chip-list-wrapper {
flex-wrap: nowrap;
overflow-x: auto;
width: 165px;
white-space: nowrap;
.mat-chip {
flex: 0 0 auto;
background: transparent;
color: var(--white);
}
}
.mat-chip-list {
margin-left: 20px;
}
.mat-chip.mat-standard-chip .mat-chip-remove {
color: var(--white);
}