css 在Angular 15中关闭材料选择的浮动标签?

06odsfpq  于 2023-05-02  发布在  Angular
关注(0)|答案(1)|浏览(116)

This question表示可以关闭Angular Material的float,我尝试了这个解决方案:

.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
  .mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label{
    display: none !important;
  }

但是没有爱。Here's the stackblitz attempt。SCSS放置在styles.scss中。
有谁知道是否可以在Angular 15中关闭选择字段的浮动?

vecaoik1

vecaoik11#

使用新的API,似乎要删除浮动占位符,应该

.mdc-notched-outline[ng-reflect-open='true'] .mdc-notched-outline__notch {
  display: none;
}

相关问题