答案 0 :(得分:5)
为此添加display:none
我已在 git repository
上创建了一个演示.css /.sccc
::ng-deep.mat-pseudo-checkbox{
display: none !important;
}
答案 1 :(得分:0)
答案 2 :(得分:0)
不建议使用Ng-deep。或者使用:encapsulation: ViewEncapsulation.None
TS
@Component({
selector: 'component-name',
...
encapsulation: ViewEncapsulation.None
})
CSS
component-name .mat-pseudo-checkbox {
display: none !important;
}
答案 3 :(得分:0)
一个有趣的替代方法是使用具有垂直方向的 button toggle group。