0

フォントフェイスを使用してLucida Sansの通常のフォントを埋め込み、ie9を除くすべてのブラウザーで正常に動作します。私は次のようなfontfaceを使用しました:

@font-face {
 font-family: 'Lucida-Sans-regular';
 src: url('../fonts/Lsans.eot');
 src: local('Lucida sans'), url('../fonts/Lsans.woff') format('woff'), url('../fonts/Lsans.ttf') format('truetype'), url('../fonts/Lsans.svg') format('svg');
 font-weight: normal;
 font-style: normal;
} 

iE9で動作させるのを手伝ってくれる人はいますか?

4

2 に答える 2

0

これが私のために働いた最終的なコードです:

 url('../fonts/Lsans.eot') format('embedded-opentype'), 

ありがとう!

于 2013-05-16T15:22:12.433 に答える
0

I think it is recommended to do the following :

@font-face {
    font-family: 'MyWebFont';
    src: url('webfont.eot'); /* IE9 Compat Modes */
    src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('webfont.woff') format('woff'), /* Modern Browsers */
    url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}
于 2013-05-16T15:00:32.003 に答える