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

后端 未结 4 558
梦谈多话
梦谈多话 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:46

    Please update your following CSS Class. Also you can move your text to a label tag and give the vertical-align middle for the label tag as well.

    CSS

    .icon {
         font-size: 35px;
         color: #ffC977; 
         vertical-align: middle;
        }
    
        label{ 
          vertical-align: middle;
        }
    

    HTML

    
       
      
    
    

提交回复
热议问题