How to implement :first-child for IE6
With CSS
http://mauzon.com/first-child-and-directly-nested-children-for-ie6/http://mauzon.com/pseudoclasses-first-child-and-last-child-for-ie6/
With Jquery
http://www.pathf.com/blogs/2008/04/hacking-the-fir/
PIE and Internet Explorer 6-8
I needed to get code appear in IE 6-8, for a new RPG we’re making. PIE makes Internet Explorer 6-8 capable of rendering several of the most useful CSS3 decoration features.
Browser Compatibility Check for Internet Explorer Versions from 5.5 to 8
Here you can find a rally good solution, how to check all versions of Internet Explorer
http://www.my-debugbar.com/wiki/IETester/HomePage
JQuery Nice Form
I founded really good JQuery Nice Form:
http://www.whitespace-creative.com/jquery/jNice/
Used it on the new online RPG we’re making.
CSS hack for IE8
IE8 Standards-Mode Only:
.test { color /*\**/: blue\9 }
All IE versions, including IE8 Standards Mode:
.test { color: blue\9 }
The full post is here: http://my.opera.com/dbloom/blog/2009/03/11/css-hack-for-ie8-standards-mode
CSS min-height for all browsers
height: 100% !important; /* for modern browsers */
height: 300px; /* for IE5.x and IE6 */
min-height: 300px; /* for modern browsers */