“Mat-Select CSS szerokość” Kod odpowiedzi

Zmień rozmiar maty

@Component({
  selector: 'app-new-figures-machine',
  templateUrl: './new-figures-machine.component.html',
  styleUrls: ['./new-figures-machine.component.css'],
  //add this to enable change style
  encapsulation: ViewEncapsulation.None,
})

.mat-select-panel
{
    min-width: calc(100% + 17px) !important;
}
Perfect Peccary

Mat-Select CSS szerokość

<mat-select 
    panelClass="width-mat" 
    disableOptionCentering
    disableRipple>
    <mat-option *ngFor="let option of elements" value={{option}}>
              {{option}
    </mat-option>
</mat-select>
Depressed Dingo

Mat-Select CSS szerokość

.mat-select-value {
    text-align: center;
    padding-left: 5px;
}

.width-mat {
    width: 30px;
    font-size: inherit;
    line-height: 2em;
    height: unset;
}

.mat-select-panel .mat-option {
    font-size  : inherit;
    line-height: 1em;
    height     : unset;
    white-space: unset;
}
Depressed Dingo

Odpowiedzi podobne do “Mat-Select CSS szerokość”

Pytania podobne do “Mat-Select CSS szerokość”

Więcej pokrewnych odpowiedzi na “Mat-Select CSS szerokość” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu