Search code examples
ionic2

How to set ion-select component with 100% width in IONIC 2


I would like to set my ion-select with 100% of width.

I have tried with css class like this:

.mySelect { width: 100% !important; }

But it is not working.


Solution

  • I did it.

    For someone who wants the solution, here is the code:

    .myCustomSelect{
      max-width: 100% !important;
    }
    

    You must have to override the 'max-width' css property.