We are using Material Design Icons, but the vertical alignment of icons is very odd...Therefore I changed the vertical alignment of the icon to bottom.
But when the text and icon are inside a link, the underline property of the icon is drawn lower then the underline of text in Chrome. In Firefox everything works as expected.
Is there is a better way to position the material design icons properly? Or how can I solve the issue of the underline being drawn at the incorrect position?
a {
text-decoration: underline;
}
a:before {
content: "\E315";
font-family: 'Material Icons';
vertical-align: bottom;
}
See this jsfiddle for full sample: https://jsfiddle.net/uumn0bbt/3/
Thanks! Stijn