Microsoft Edge中的字体连字图标

时间:2019-03-25 14:53:01

标签: html fonts microsoft-edge ligature

我正在将google material图标字体库用于网络应用中的大多数图标。我已经开始为Microsoft Edge调试,但没有发现它们显示出来。

这是一个已知问题吗?如果需要,我可以切换到实际的图标图像,但这在现阶段将是一项繁重的工作。

1 个答案:

答案 0 :(得分:0)

尝试使用F12开发人员工具检查Google Icons CSS参考是否加载成功。

以下代码在Edge 42和Edge 44版本上运行良好:

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style type="text/css">
    @font-face {
        font-family: 'Material Icons';
        font-style: normal;
        font-weight: 400;
        src: url(https://example.com/MaterialIcons-Regular.eot); /* For IE6-8 */
        src: local('Material Icons'), local('MaterialIcons-Regular'), url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'), url(https://example.com/MaterialIcons-Regular.woff) format('woff'), url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
    }

    .material-icons {
        font-family: 'Material Icons';
        font-weight: normal;
        font-style: normal;
        font-size: 24px; /* Preferred icon size */
        display: inline-block;
        line-height: 1;
        text-transform: none;
        letter-spacing: normal;
        word-wrap: normal;
        white-space: nowrap;
        direction: ltr;
        /* Support for all WebKit browsers. */
        -webkit-font-smoothing: antialiased;
        /* Support for Safari and Chrome. */
        text-rendering: optimizeLegibility;
        /* Support for Firefox. */
        -moz-osx-font-smoothing: grayscale;
        /* Support for IE. */
        font-feature-settings: 'liga';
    }
</style>
<i class="material-icons">face</i>

输出截图如下:

enter image description here