如何在CSS中进行渐变背景?

前端之家收集整理的这篇文章主要介绍了如何在CSS中进行渐变背景?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有什么办法创建一个渐变背景,只使用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%);

也可以看看:

> The specification
> The MDN documentation

原文链接:/css/218650.html

猜你在找的CSS相关文章