ios背景半透明渐变问题

给一个层设置半透明的背景
background:linear-gradient(to bottom, transparent, #ffffff)
在安卓上显示正常(白色半透明)
但ios上显示透明渐变会出现灰色,
所以不能直接写成transparent, 改成如下
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%) 或 background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1))

出现这个问题的原因参考网址:https://blog.csdn.net/simgenius/article/details/82688864

你可能感兴趣的:(ios背景半透明渐变问题)