首页 > IE下面如何给thead设置渐变

IE下面如何给thead设置渐变

CSS如下:

table thead{
	background: #fcfcfc; /* Old browsers */
	background: -moz-linear-gradient(top,  #fcfcfc 0%, #eeeff2 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#eeeff2)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fcfcfc 0%,#eeeff2 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fcfcfc 0%,#eeeff2 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fcfcfc 0%,#eeeff2 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #fcfcfc 0%,#eeeff2 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#eeeff2',GradientType=0 ); /* IE6-9 */
}

在Chrome、Firefox下面都有效果,但是IE9以下,直接显示#FCFCFC。

question:

如何让IE下面也能实现类似的效果


thead 中的 thtd 设置样式。

【热门文章】
【热门文章】