色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

我們可以做多線地墊標簽嗎

呂致盈2年前8瀏覽0評論

我的標簽有點長,所以我想讓它多行。有沒有辦法讓我用css來實現它。這是我的代碼

<div class="col-sm-4 require" click="onClick($event)">
        <mat-form-field class="example-full-width">
          <mat-label>What cultural background or ethnicity do you identify with?</mat-label>
          <mat-select autofocus formControlName="otherCulturalBackgroundID"
            [ngClass]="{ 'is-invalid': submitted && formControls.otherCulturalBackgroundID.errors }" required>
            <mat-option *ngFor="let race of masterRace" [value]="race.id" (click)="onClick($event)">
              {{race.value}}
            </mat-option>
            
          </mat-select>
          <mat-error *ngIf="formControls.otherCulturalBackgroundID.errors">
            Please select other cultural backgrounds
          </mat-error>
        </mat-form-field>
      </div>

這是它看起來的樣子。標簽越長越好image

我試著用這個css。Mat-label變為多行,但它與下面的選項重疊。

.mat-form-field-label {
    white-space: normal !important;
}

這是使用上面的css后的樣子。我該如何解決這個問題after css