-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; }