Reputation: 8008
is there a way to disable the rendering in IE9? Can we do it using stylesheet changes? or some meta character on the webpage maybe?
thanks
EDIT here is a sample
in Chrome
and in IE9
i want the page to look as displayed in Chrome. Is there any way i can get that effect in IE9?
Upvotes: 1
Views: 31
Reputation: 4233
You could add a specific stylesheet which will be only loaded in IE9 using IE conditional comments. In this stylesheet you should add whatever you need to fix the rendering issues.
<!--[if IE 9]>
<link href="stylesheets/ie9.css" rel="stylesheet" />
<![endif]-->
Here is more info about conditional comments and how it works.
Upvotes: 1