Missing text in IE11

I think I figured out the issue: I’m using the Bourbon Neat sass library and it adds a line: @include font-feature-settings(“kern”, “liga”, “pnum”); that IE apparently doesn’t like. I removed this mixin include and the IE problem went away.

What is the best way to detect IE browsers 8 and below?

I would suggest using that plugin, but slightly modifying it for your needs. For example, you can find the code block in php-browser-detection.php that does the IE7 check: function is_IE7 (){ $browserInfo = php_browser_info(); if(isset($browserInfo[‘browser’]) && $browserInfo[‘browser’]==’IE’ && $browserInfo[‘majorver’] == ‘7’) return true; return false; } To create a version that will detect IE 8, … Read more