在IE9中的iframe中@ font-face

时间:2014-05-09 11:36:49

标签: iframe internet-explorer-9 font-face

我几天来一直在努力解决问题。我有一个来自fontsquirrel的webfont工具包。当我在iframe中加载包含的网页时,IE9不会加载字体。奇怪的是,当我在浏览器中加载页面时,它确实有效。 F12开发人员工具中没有错误。

代码:

<style type="text/css">
    html, body {
        margin: 0;
        padding: 0 0 1em 0;
        width: 100%;
        height: 100%;
        /*overflow-x: hidden;
        overflow-y: auto;*/
        overflow: hidden;
        position: relative;
    }

    @font-face {
        font-family: 'bebas_neueregular';
        src: url('build/img/BebasNeue-webfont.eot?');
        src: url('build/img/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
             url('build/img/BebasNeue-webfont.woff') format('woff'),
             url('build/img/BebasNeue-webfont.ttf') format('truetype'),
             url('build/img/BebasNeue-webfont.svg#bebas_neueregular') format('svg');
        font-weight: normal;
        font-style: normal;
    }
</style>

0 个答案:

没有答案