How to remove small caret from ion-select in ionic4

前端 未结 10 1344
春和景丽
春和景丽 2021-01-17 22:21

I want to remove the inbuilt grey small caret from ion-select, and use my custom caret(arrow) instead.

Code:

ion-select {
  color: grey         


        
10条回答
  •  Happy的楠姐
    2021-01-17 23:07

    I found a way to remove default icon with css, using ::part directive:

    &::part(icon) {
        display: none;
    }
    

    and the arrow disappear.

提交回复
热议问题