我在我的CSS上加载了两个带有font-face的字体。 第一种字体适用于IE7 / 8,第二种字体不适用。两种字体的css代码相同。 知道怎么解决这个问题吗? :(
这是html页面:http://canapin.com/web/fonts.html
和css:http://canapin.com/web/fonts.html
@font-face {
font-family: 'nexa_bold';
src: url('./fonts/Nexa Bold.eot?');
src: url('./fonts/Nexa Bold.woff') format('woff'),
url('./fonts/Nexa Bold.ttf') format('truetype'),
url('./fonts/Nexa Bold.svg') format('svg');
}
@font-face {
font-family: 'signika';
src: url('./fonts/Signika-Regular.eot?');
src: url('./fonts/Signika-Regular.woff') format('woff'),
url('./fonts/Signika-Regular.ttf') format('truetype'),
url('./fonts/Signika-Regular.svg') format('svg');
}
h1 {
font-family: 'nexa_bold';
}
h1.alt {
font-family: 'signika';
}