【问题标题】:Remove padding between the list item in angular material删除角度材料中列表项之间的填充 【发布时间】:2020-08-18 08:50:10 【问题描述】: 想要删除角材料中列表项之间的填充,因为它包含更多屏幕空间。 https://stackblitz.com/edit/angular-material-list?file=app/app.component.ts 【问题讨论】: 标签: angular angular-material 【解决方案1】: 你可以为mat-list-item设置其他高度(目前高度为48px) .wrapper .mat-list-item { height: 20px; } 【讨论】: