背景渐变
时间:2015-01-30 17:54:39
收藏:0
阅读:95
#head{width:200px; height: 200px; border: 1px solid #000;
background: -moz-linear-gradient(top,red,yellow);
background:-webkit-linear-gradient(top,red,yellow);
background: -ms-linear-gradient(top,red,yellow);
background: linear-gradient(top,red,yellow);
ms-filter:"progid:DXImageTrasform.Microsoft.gradient(GradientType=0,startColorstr=red,endColorstr=yellow)";
}
评论(0)