Font ligature icons in Microsoft edgeHow to add some non-standard font to a website?Can I embed a custom font in an iPhone application?Icon font is not displayed at Windows Phone devicesFavicon NOT working on EdgeGoogle material icon font - Guide for full browser support?Fonts not showing up in Microsoft EdgeAvoid google crawl or index font text in ligatures to show in sitelinksCSS font-spacing issue with Calibri and the letters “ti”Using SVG Fragment Identifiers for background images in css with Microsoft Edge 42 (17134)

Can European countries bypass the EU and make their own individual trade deal with the U.S.?

"I am [the / an] owner of a bookstore"?

Is ALTER TABLE ... DROP COLUMN really a metadata only operation?

Copy group of files (Filename*) to backup (Filename*.bak)

If I were to build a J3 cub twice the size of the original using the same CG would it fly?

Is it okay to submit a paper from a master's thesis without informing the advisor?

When was this photo of Mission Dolores *actually* taken?

What is the Japanese name for the conventional shoelace knot?

Sentence editor

if a USA citizen marries a foreign citizen who has kid from previous marriage

Have any large aeroplanes been landed — safely and without damage — in locations that they could not be flown away from?

Do home values typically rise and fall consistently across different price ranges?

How to describe POV characters?

Knight's move in chess.

Head on collision of two black holes

By RAW, how can Prestidigitation create sound?

I just started should I accept a farewell lunch for a coworker I don't know?

On what to compliment someone with anorexia in order to improve their body image?

Adjective for 'made of pus' or 'corrupted by pus' or something of something of pus

Checkmate in 1 on a Tangled Board

Are Valenar elves and Aereni elves different races of elves?

How do I ensure my employees don't abuse my flexible work hours policy?

Can a successful book series let the bad guy win?

The Football Squad



Font ligature icons in Microsoft edge


How to add some non-standard font to a website?Can I embed a custom font in an iPhone application?Icon font is not displayed at Windows Phone devicesFavicon NOT working on EdgeGoogle material icon font - Guide for full browser support?Fonts not showing up in Microsoft EdgeAvoid google crawl or index font text in ligatures to show in sitelinksCSS font-spacing issue with Calibri and the letters “ti”Using SVG Fragment Identifiers for background images in css with Microsoft Edge 42 (17134)






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I'm using google material Icon font library for the majority of icons in a web app. I've started debugging for Microsoft Edge and realised none of them are showing.



Is this a known issue? I can switch to actual icon images if need be but it would be a massive job at this stage.










share|improve this question






























    0















    I'm using google material Icon font library for the majority of icons in a web app. I've started debugging for Microsoft Edge and realised none of them are showing.



    Is this a known issue? I can switch to actual icon images if need be but it would be a massive job at this stage.










    share|improve this question


























      0












      0








      0








      I'm using google material Icon font library for the majority of icons in a web app. I've started debugging for Microsoft Edge and realised none of them are showing.



      Is this a known issue? I can switch to actual icon images if need be but it would be a massive job at this stage.










      share|improve this question
















      I'm using google material Icon font library for the majority of icons in a web app. I've started debugging for Microsoft Edge and realised none of them are showing.



      Is this a known issue? I can switch to actual icon images if need be but it would be a massive job at this stage.







      html fonts microsoft-edge ligature






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 25 at 15:45







      india_tango

















      asked Mar 25 at 14:53









      india_tangoindia_tango

      82 bronze badges




      82 bronze badges






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Try to use F12 developer tools to check whether the Google Icons CSS reference load success.



          The following code works well on Edge 42 and Edge 44 version:



          <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>


          The output screenshot as below:



          enter image description here






          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55340580%2ffont-ligature-icons-in-microsoft-edge%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Try to use F12 developer tools to check whether the Google Icons CSS reference load success.



            The following code works well on Edge 42 and Edge 44 version:



            <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>


            The output screenshot as below:



            enter image description here






            share|improve this answer



























              0














              Try to use F12 developer tools to check whether the Google Icons CSS reference load success.



              The following code works well on Edge 42 and Edge 44 version:



              <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>


              The output screenshot as below:



              enter image description here






              share|improve this answer

























                0












                0








                0







                Try to use F12 developer tools to check whether the Google Icons CSS reference load success.



                The following code works well on Edge 42 and Edge 44 version:



                <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>


                The output screenshot as below:



                enter image description here






                share|improve this answer













                Try to use F12 developer tools to check whether the Google Icons CSS reference load success.



                The following code works well on Edge 42 and Edge 44 version:



                <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>


                The output screenshot as below:



                enter image description here







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 26 at 1:57









                Zhi Lv - MSFTZhi Lv - MSFT

                1,5291 gold badge3 silver badges6 bronze badges




                1,5291 gold badge3 silver badges6 bronze badges


















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55340580%2ffont-ligature-icons-in-microsoft-edge%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript