/* 颜色渐变兼容 */
#gradient {
background: -moz-linear-gradient(top,#fff 0,#fef5e1 100%);
background: -o-linear-gradient(top,#fff 0,#fef5e1 100%);
background: linear-gradient(to bottom, #fff 0, #fef5e1 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#fef5e1,GradientType=0);
}
时间: 2024-10-04 13:42:17