有没有什么办法创建一个渐变背景,只使用CSS?
您可以看到我想要实现的一个例子on this website。
解决方法
在你的CSS中使用这个
background-image: -o-linear-gradient(bottom,rgb(254,133,107) 24%,rgb(35,171,17) 62%); background-image: -moz-linear-gradient(bottom,17) 62%); background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.24,107)),color-stop(0.62,17))); background-image: -webkit-linear-gradient(bottom,17) 62%); background-image: -ms-linear-gradient(bottom,17) 62%); /* This last line is all you need for modern browsers */ background-image: linear-gradient(bottom,17) 62%);
也可以看看: