font awesome icon is not appearing in IE 11, but showing in other browsers

I had the same issue, I solved it by adding this meta tag as the FIRST tag in <head>: <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> Also, according to the official documentation, check the following: For Internet Explorer: you don’t serve files with no-store option in Cache-control header (Ref: #6454); For Internet Explorer and HTTPS: you don’t serve files … Read more

Detecting IE11 using CSS Capability/Feature Detection

In the light of the evolving thread, I have updated the below: IE 6 * html .ie6 {property:value;} or .ie6 { _property:value;} IE 7 *+html .ie7 {property:value;} or *:first-child+html .ie7 {property:value;} IE 6 and 7 @media screen\9 { .ie67 {property:value;} } or .ie67 { *property:value;} or .ie67 { #property:value;} IE 6, 7 and 8 @media … Read more