Css 强制IE嵌入@Font-Face?

Css 强制IE嵌入@Font-Face?,css,internet-explorer,font-face,embedding,Css,Internet Explorer,Font Face,Embedding,我在一个有字体的网站上工作,但是我客户的IE 11和12没有加载它们。在许多机器上进行了无休止的测试,并且始终取得了成功之后,我确信他们的IE默认不允许嵌入。有办法解决这个问题吗 这是我的CSS @font-face { font-family: 'hirukoregular'; src: url('fonts/thinkdust_-_hiruko-webfont.eot'); src: url('fonts/thinkdust_-_hiruko-webfont.eot?

我在一个有字体的网站上工作,但是我客户的IE 11和12没有加载它们。在许多机器上进行了无休止的测试,并且始终取得了成功之后,我确信他们的IE默认不允许嵌入。有办法解决这个问题吗

这是我的CSS

@font-face {
    font-family: 'hirukoregular';
    src: url('fonts/thinkdust_-_hiruko-webfont.eot');
    src: url('fonts/thinkdust_-_hiruko-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/thinkdust_-_hiruko-webfont.woff2') format('woff2'),
         url('fonts/thinkdust_-_hiruko-webfont.woff') format('woff'),
         url('fonts/thinkdust_-_hiruko-webfont.ttf') format('truetype'),
         url('fonts/thinkdust_-_hiruko-webfont.svg#hirukoregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

在本地使用webfont而不是webfont?我觉得奇怪的是,IE实际上会阻止使用本地提供的字体。我需要使用特定品牌的字体。一旦通过IE打开字体嵌入,它就可以正常工作,但我希望有一种方法可以让它在打开时工作?使用webfont而不是本地字体?我觉得奇怪的是,IE实际上会阻止使用本地提供的字体。我需要使用特定品牌的字体。一旦字体嵌入通过IE打开,它就可以正常工作,但我希望有一种方法可以在打开时工作?