针对兼容IE6/IE7/IE8/FF的CSS HACK写法大全

/* IE6、IE7、IE8、火狐FF常用的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支持 */
}
posted @ 2011-02-23 22:35  十月八日  阅读(229)  评论(1编辑  收藏  举报