Html5实现渐变
/*在给元素设置渐变色时,此时的颜色是作为背景图片来显示*/ #content{ /*针对FireFox浏览器*/ background-image: -moz-linear-gradient(top,#fff,#eee); background-image:-webkit-linear-gradient(top,#fff,#eee); background-image: linear-gradient(top,#fff,#eee); /*三个参数依次为开始的位置(也可以为角度如45deg),开始颜色,结束颜色*/ }