div 的渐变底部颜色



我想要一个渐变的底部颜色,如下图所示。是否可以在 css3 中使用图像。

任何帮助都得到了认可。

是和否。

是的,这是可能的。像 http://www.colorzilla.com/gradient-editor/这样的工具使创建CSS3代码变得容易。例如,这是你想要的:http://www.colorzilla.com/gradient-editor/#ffffff+75,cccccc+100;Custom

不,您应该始终有一个渐变的回退图像。并非所有浏览器都支持它,也不是所有浏览器都同样支持它。

这将仅在元素底部创建渐变,并且不会随元素的高度而拉伸。它是固定的100px.

.style {
    padding-bottom:100px;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background-position: center bottom;
    background-size: 100px 100px;
    background-repeat: repeat-x;
}

相关内容

  • 没有找到相关文章

最新更新