css で font-face を使用していますが、デザイナーが作成した font-family の src を使用して作成し、英語の文字までの範囲で別の font-face を作成するヘブライ文字が原因であるという問題があります。同じコンテナのヘブライ文字の隣に巨大です。
ここに私のcssコードがあります:
任意の文字の場合:
@font-face {
font-family: 'MetaliRegular';
src: url('../css/mmetaliregularwebfont.eot');
src: url('../css/metaliregularwebfont.eot?#iefix') format('embedded-opentype'),
url('../css/metaliregularwebfont.woff') format('woff'),
url('../css/metaliregularwebfont.ttf') format('truetype'),
url('../css/metaliregularwebfont.svg#MetaliRegular') format('svg');
font-weight: normal;
font-style: normal;
}
英語の文字の例外については、
@font-face {
font-family: 'MetaliRegular';
src: local("Arial");
unicode-range: U+0041-007A;
}
ご覧のとおり、同じフォント ファミリを持っています。
私はそれらを異なるフォントで取得していますが、文字のサイズの違いは非常に大きいです。
これについて何か助けはありますか?
ありがとう 、
エラン