CSS Hack
.test{
color:red; /* 所有浏览器都支持 */
color:red !important;/* Firefox、IE7支持 */
_color:red; /* IE6支持 */
*color:red; /* IE6、IE7支持 */
*+color:red; /* IE7支持 */
color:red\9; /* IE6、IE7、IE8支持 */
color:red\0; /* 仅IE8支持 */
}
body:nth-of-type(1) p{color:red;} /* Chrome、Safari支持 */
PS:今天发现在属性值的结束符;后加#,除了safari其他浏览器都能认。 --2010.8.12