Ionic - ion-item text is not vertically centered when ion-icon is bigger

后端 未结 4 565
梦谈多话
梦谈多话 2021-02-02 12:01

I have a list of ion-items with an icon followed by text. When the icon size is smaller as seen on the image below, the text seems to vertically align itself to the center of th

4条回答
  •  星月不相逢
    2021-02-02 12:40

    Try this. Add a element to the text, vertical-align only works with elements inline side by side :

    CSS

    .icon {
     display: inline-block;
     font-size: 35px;
     color: #ffC977;
     vertical-align: middle;
    }
    
    .text{
      display: inline-block;
      vertical-align: middle;
    }
    

    HTML

    
       
      Recent
    
    

提交回复
热议问题