Reputation: 359
I have developed this website using Bootstrap. Now some of the javascript and styling is not recognised by IE, which is pretty weird!
Here is the link :
{http://--162.243.241.231--/blue/calculator.html}
Any solutions or ideas are kindly appreciated!
Upvotes: 0
Views: 48
Reputation: 2667
For the styling - have a separate stylesheet for IE-only and put it in your <head>
with all regular CSS, example below:
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="IE.css" />
<![endif]-->
If you want to specify what IE version:
<!--[if IE 9]>
<link rel="stylesheet" type="text/css" href="IE9.css">
<![endif]-->
Upvotes: 1