【发布时间】:2020-04-02 22:24:24
【问题描述】:
有没有什么方法可以去掉Material Textbox的外框边框没有Ng deep,影响其他组件?
下面需要去掉边框,这段代码会影响页面内的其他组件
How to remove the outline mat-form-filed border corner radius
::ng-deep div.mat-form-field-outline-start{
border-color: 0 !important;
border-width: 0px !important;
}
::ng-deep .mat-form-field-outline-gap{
border-color: 0 !important;
border-width: 0px !important;
}
::ng-deep .mat-form-field-outline-end{
border-color: 0 !important;
border-width: 0px !important;
}
目前使用大纲素材文本框,
<div class="input-wrap">
<mat-form-field appearance = "outline">
<input matInput test >
</mat-form-field>
</div>
【问题讨论】:
标签: angular typescript angular-material material-design angular7