此处提供了mat-list控件:https://material.angular.io/components/list/overview
是否可以在列表项目开始时选中前面的复选框(而不是由于默认设置而在末尾加上后缀)?
我试过了,但是没有成功!
/* mat-list: atempt to move the checkboxes to the far left */
.mat-pseudo-checkbox {
left: 0 !important;
}发布于 2017-12-26 01:03:25
每个组件都有一个API部分,它为您提供了其他功能:
https://material.angular.io/components/list/api#MatListOption
<mat-list-option checkboxPosition="before"></mat-list-option>https://stackoverflow.com/questions/47970515
复制相似问题