skip to Main Content

Does anyone know how to set the autocomplete multiple checkbox item height in Angular Material?

I want to like this

Line item height 18px

But it shows this while using multiple checkbox

Line item checkbox height

Here is my sample code https://stackblitz.com/edit/components-issue-s5kjcj?file=src/app/example-component.css

2

Answers


  1. you can use ngx-mat-select-search. here is its sample code:

    https://stackblitz.com/edit/ngx-mat-select-search

    Login or Signup to reply.
  2. You need to add CSS in the way like class to the element mentioned as tag

    .mat-option {
      font-size: x-small;
      min-height: auto;
      line-height: 18px;
    }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search