My page do not render properly in IE8
Internet Explorer 8 have different rendering model then previous versions. Some of web page control may need to re-work in order to compatible with IE8.
Before you or the programmer fix the compatibility problem, here is the work around so that your visitors with IE8 can still browse properly.
1. Add the following meta-tag in the head section of your webpage above any linked files (i.e, above <link>…</link> and <script>…</script> tags)
<meta http-equiv="X-UA-Compatible" content="IE=7" />
If the tag is below link or script tags, the fix will not work.
The meta tag will force IE8 to use the rendering engine of IE7, and your webpages will look as browsing in IE7.
Once you finish optimize your site and completely compatible with IE8, you can remove the line or change to:
<meta http-equiv="X-UA-Compatible" content="IE=8" />
If you need to add above meta-tag on many web page files, feel free to contact our helpdesk to add it directly on your domain IIS entry header.
Add Your Comments