Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Glyphicon weirdness on IE8 #13863

Closed
BBosman opened this issue Jun 19, 2014 · 2 comments
Closed

Glyphicon weirdness on IE8 #13863

BBosman opened this issue Jun 19, 2014 · 2 comments

Comments

@BBosman
Copy link
Contributor

BBosman commented Jun 19, 2014

I've been seeing some weird behavior when using Glyphicons (or any other font-face) on IE8. If the page is cached, and loaded without the mouse over the window (i.e. hit the refresh button or load something in an iframe) then the page gets rendered before the font loads.

I did some research and it appears I'm not the only one.

Apparently IE8 doesn't want to play nice when you use @font-face and :before together.

So far I've had some success fixing it with a bit of custom JavaScript I got from the Stack Overflow answers and wrapping that in <!--[if IE 8 ]><script></script><![endif]-->:

$(document).ready(function() {
  var $style;
  $style = $('<style type="text/css">:before,:after{content:none !important}</style>');
  $('head').append($style);
  return setTimeout((function() {
    return $style.remove();
  }), 0);
});

I don't know if that's the ideal fix (or that it fixes it in all circumstances), but putting at least a call-out in the docs making people aware of the issue in general would be a good idea imho.

@mdo
Copy link
Member

mdo commented Jun 19, 2014

Crazy.

I don't know that we need to document this just yet—I haven't had any problems myself, and no one's really complained here about it. And, more importantly, v4 will drop IE8 support.

mdo added a commit that referenced this issue Jun 19, 2014
@mdo
Copy link
Member

mdo commented Jun 20, 2014

Closing per #13866.

@mdo mdo closed this as completed Jun 20, 2014
@twbs twbs locked and limited conversation to collaborators Nov 17, 2014
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants