Reputation:
Simple question, yet I cannot seem to find a working solution anywhere. I am using the Font Awesome Library, saved in a file, in a static site. I put in the following code into a login link.
<i class="fa fa-lock"></i>
Which on Google Chrome brings up a little lock icon right next to "Login". However when I check on IE or Firefox, it disappears. Is there a reason that this happens, and if so is there a work around? I don't have any code to provide except for the one above because I'm simply at a loss. Do I need to somehow code in cases for the various browsers?
Upvotes: 2
Views: 4408
Reputation: 438
From https://github.com/FortAwesome/Font-Awesome/wiki/Troubleshooting
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Upvotes: 3