在这种情况下,一切正常,字体显示正确:
@font-face {
font-family: 'CalibriRegular';
src: url('fonts/calibri.eot');
}
但是当我添加其他格式时,IE8中不显示字体:
@font-face {
font-family: 'CalibriRegular';
src: url('fonts/calibri.eot');
src: url('fonts/calibri.eot') format('embedded-opentype'),
url('fonts/calibri.woff') format('woff'),
url('fonts/calibri.ttf') format('truetype'),
url('fonts/calibri.svg#CalibriRegular') format('svg');
}
有什么问题?谢谢