作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
-moz-radial-gradient(center -200px , ellipse farthest-corner, #323C49 0%, #718299 65%) no-repeat scroll 0 0 transparent;
我上面有这段代码,我刚刚意识到这个渐变是从上到下的。有什么办法让它在 30px 后停止整个渐变。我可以根据需要进行调整,但是如何让渐变在 30 像素后自行完成?
最佳答案
您可以一起使用 background-size
属性。
像这样:
div {
height: 100px;
width: 100px;
border: 1px solid black;
background: radial-gradient(ellipse farthest-corner, #323C49 0%, #718299 65%) no-repeat;
background-size: auto 30px;
background-position: top;
}
<div></div>
关于html - 如何让 css 渐变在这么多像素后停止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8860843/
我是一名优秀的程序员,十分优秀!