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
Try this. Add a element to the text, vertical-align only works with elements inline side by side :
vertical-align
CSS
.icon { display: inline-block; font-size: 35px; color: #ffC977; vertical-align: middle; } .text{ display: inline-block; vertical-align: middle; }
HTML
Recent