我建议使用CSS渐变生成器。
试试这个:http://www.colorzilla.com/gradient-editor/
它有许多预设,其中一些看起来可能对你有用。
div {
height: 500px;
width: 300px;
background-image: -o-linear-gradient(#8860af, #4e91cc, #c7deee);
background-image: -moz-linear-gradient(#8860af, #4e91cc, #c7deee);
background-image: -webkit-linear-gradient(#8860af, #4e91cc, #c7deee);
}
现场演示:Tinkerbin
了解更多 here 。