html – 如何使一个css渐变停止后这么多像素?

前端之家收集整理的这篇文章主要介绍了html – 如何使一个css渐变停止后这么多像素?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
-moz-radial-gradient(center -200px,ellipse farthest-corner,#323C49 0%,#718299 65%) no-repeat scroll 0 0 transparent;

我有这个代码,我只是意识到这个渐变从上到下.有没有什么办法让它在30px后停止整个渐变.我可以根据需要进行调整,但是如何使渐变在30px之后完成?

解决方法

您可以一起使用background-size属性.

喜欢这个:


    

div {
        height:100px;
        background:-moz-radial-gradient(center,#718299 65%) no-repeat;
        background-size:auto 30px;
    }
原文链接:https://www.f2er.com/html/230529.html

猜你在找的HTML相关文章