I have a site that uses "arial narrow". To avoid compatibility issues, I made a version of the @ font-face font of this font using the Font Squirrel font generator ( http://www.fontsquirrel.com ), but when I am on a system that does not have its own "Arial Narrow", and then it is downloaded via the Internet via @ font-face, the font is larger than its own "Arial Narrow"; I use absolute size in px for fonts.
Is there a way to set different sizes for the native and online font?
@font-face {
font-family: 'ArialNarrow';
src: url('/fonts/arialn-webfont.eot');
src: local('☺'), url('/fonts/arialn-webfont.woff') format('woff'), url('/fonts/arialn-webfont.ttf') format('truetype'), url('/fonts/arialn-webfont.svg#webfontNZumFher') format('svg');
font-weight: normal;
font-style: normal; }
and below:
font-family: 'Arial Narrow', 'ArialNarrow', arial, helvetica, sans-serif;
font-size:14px;
Thanks in advance for my bad english
source
share