美文网首页
font图标兼容ie6

font图标兼容ie6

作者: zhcnnet | 来源:发表于2018-04-24 23:16 被阅读62次
    @font-face 
    {
      font-family: 'MyWebFont';
      src: url('webfont.eot'); /* IE9 Compat Modes */
      src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
           url('webfont.woff') format('woff'), /* Modern Browsers */
           url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
           url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
    }
    .icon
    {
        font-family: 'MyWebFont' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 16px;
    }
    .icon.ic_home:before 
    {
      content: "\e400";
    }
    
    <!--ie6、7不支持before和after,所以要使用&#xe400; &#<代码>;不要<>-->
    <span class="icon">&#xe404;</span>
    

    图标可以通过https://icomoon.io/app/#/select来制作

    相关文章

      网友评论

          本文标题:font图标兼容ie6

          本文链接:https://www.haomeiwen.com/subject/odwslftx.html