欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

html:iframe嵌套页面,ie浏览器加载字体图标不显示问题

程序员文章站 2022-05-26 09:28:25
...

字体图标不显示问题是加载问题导致,可能是加载慢页面渲染太快从而字体图标样式不显示,深入的不太了解了,毕竟小菜鸡一枚

,经过作者半天研究,结果就是简单粗暴的一种方式,直接在header中添加字体图标样式,我这里使用的是bootstrap的字体图标样式,如果是其他的字体图标,小伙伴们进入源文件搜索icon找到类似下方代码,放到页面的hader中就可以;

<style>
        @font-face {
            font-family: 'Glyphicons Halflings';
            src: url(/fonts/glyphicons-halflings-regular.eot);
            src: url(/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),
            url(/fonts/glyphicons-halflings-regular.woff2) format('woff2'),
            url(/fonts/glyphicons-halflings-regular.woff) format('woff'),
            url(/fonts/glyphicons-halflings-regular.ttf) format('truetype'),
            url(/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')
        }
    </style>

 

相关标签: html html