Currently, I am experimenting with a basic @import to include Microsoft icons. The process works smoothly in Chrome; however, Internet Explorer does not display anything, and no errors are visible.
Applying Styles
@import "https://appsforoffice.microsoft.com/fabric/1.0/fabric.min.css";
.ms-Icon {
font-size:35px;
display:block;
margin:10px auto;
color:red;
border:1px solid black}
HTML Markup
<div>
<i class="ms-Icon ms-Icon--alert"></i>
</div>
I have attempted to also reference the CSS file in JSFiddle, but the issue persists. Although I am aware of the problems related to EOTF formatting in IE9 and below, my browser is IE11, and I cannot find any solution references for this particular problem.