I am using a font family from MyFonts.com and I include it like they have in their example css:
@import url("//hello.myfonts.net/count/xxxxxx");
@font-face {
font-family: 'URWGroteskNarrow';
src: url('fonts/XXXXXX_1_0.eot');
src: url('fonts/XXXXXX_1_0.eot?#iefix') format('embedded-opentype'),
url('fonts/XXXXXX_1_0.woff') format('woff'),
url('fonts/XXXXXX_1_0.ttf') format('truetype');
font-style: normal;
font-weight: normal;
}
The font displays fine in all browsers but I have a problem with the baseline in Chrome. The font is displayed a bit higher than in other browsers: (left: Firefox, right: Chrome)
It seems that Chrome uses a different baseline which causes not only the font not being vertically centered when line-height and height are the same (see in the dark navigation bar) and even cut off on top.
Any ideas why this can happen?