<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />more
Posts Tagged with browsers
Force compatibility mode in IE8
November 5, 2009 - For sites designed to work with IE7 ie. all of them.
Exclude IE
September 2, 2009 - Let's say you have no time to spend on fixing IE6 bugs, but still want to provide access to the content in unstyled form. You could use javascript, or probably a neater method is IE's conditional comments.
The classic IE specific stylesheet call
<!--[if IE 6]> <style type="text/css"> @import url(/assets/ie.css); </style> <![endif]-->more