I need to force IE8 to display as follows:
Browser Mode: Internet Explorer 8
Document Mode: IE8 Standards
I have added this tag however it only affects the document mode, not the browser mode. How do I override browser mode to ensure the page is always shown with IE8 browser mode too?
<meta http-equiv="X-UA-Compatible" content="IE=8" />
Just give the HTML page the right doctype
. E.g.
<!doctype html>
For an explanation and overview of all doctypes see http://hsivonen.iki.fi/doctype/. You don't necessarily need those (nasty) meta headers.