渐变属性在我的 android 海豚浏览器 9.0.1 版上无法正常工作。这是CSS:
position: absolute;
top: 0;
left: 0;
width: 320px;
height: 60px;
/* Mozilla Firefox */
background-image: -moz-linear-gradient(left, rgba(255,255,255,0) 66px, #171000 172px);
/* Webkit (Safari/Chrome 10) */
background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(17, 10, 0, 0)), color-stop(1, #171000));
/* Webkit (Chrome 11+) */
background-image: -webkit-linear-gradient(left, rgba(17, 10, 0, 0) 66px, #171000 172px);
/* W3C Markup, IE10 Release Preview */
background-image: linear-gradient(to right, rgba(17, 10, 0, 0) 66px, #171000 172px);
我是否必须为此浏览器添加另一条规则?据我所知,它使用 webkit,我不明白为什么它不起作用。