我创建了一个stackblitz example here。我特灵隐藏
的数据但无论我怎么尝试或试图覆盖,我都无法隐藏这条下划线。我试图在styles.scss中覆盖它,以便在应用程序中更改它
6qqygrtg1#
您可以应用下面的CSS来删除底线。
body { font-family: Roboto, 'Helvetica Neue', sans-serif; margin: 0; padding: 30px; } html, body { height: 100%; } mat-form-field { .mat-mdc-form-field-type-mat-select { background-color: #ffff !important; } .mat-mdc-text-field-wrapper { border-bottom: none; } /* CSS to remove line - start */ .mdc-text-field--filled .mdc-line-ripple::before, .mdc-text-field--filled .mdc-line-ripple::after { border-bottom: 0px !important; } /* CSS to remove line - end */ }
字符串stackblitz
1条答案
按热度按时间6qqygrtg1#
您可以应用下面的CSS来删除底线。
字符串
stackblitz