我正在使用以下@fontface
集成:
@font-face {
font-family:'my_Font';
src: url('fonts/my-font.eot');
src: url('fonts/my-font.eot?#iefix') format('embedded-opentype'),
url('fonts/my-font.woff') format('woff'),
url('fonts/my-font.ttf') format('truetype'),
url('fonts/my-font.svg#MyFont') format('svg');
font-weight: normal;
font-style: normal;
}
它在IE8中不起作用,为什么会这样?不应该工作吗?我已检查并仔细检查字体是否在该目录中,并且它就在那里。
我在VirtualBox中进行测试