透明渐变问题在Safari中的颜色背景

时间:2017-10-18 15:01:30

标签: css gradient

我知道有多个other issues关于在Safari中使用transparent作为颜色值并需要使用rgba(255, 255, 255, 0)作为替代方法的问题,但它是不适合我。我使用渐变作为“显示更多”淡入淡出,它具有深灰色背景,并且渐变在Safari中仍然看起来不平滑:

enter image description here

在Chrome中:

enter image description here

演示:CodePen

:after渐变为background-image: linear-gradient(rgba(255,255,255,0) 0%, #2b2b2b 100%),剖面背景颜色为#2b2b2b。我需要为渐变使用什么?

1 个答案:

答案 0 :(得分:1)

尝试从黑色(而不是白色)淡出到#2b2b2b:

background-image: linear-gradient(rgba(0,0,0,0) 0%, #2b2b2b 100%)