Chrome 已经开始警告我关于我的旧渐变:
Invalid CSS property value: right no-repeat url('../Images/Logo_white.png'),
-moz-linear-gradient(bottom, #899fa6, #3e545c)
它仅适用于 o、moz 和 ms 的扩展:
background: right no-repeat url('../Images/CompanyLogo.png'),
-moz-linear-gradient(bottom, #000000, #ffffff);
webkit的那个很好:
background: right no-repeat url('../Images/CompanyLogo.png'),
-webkit-linear-gradient(bottom, #000000, #ffffff);
难道我做错了什么?
扩展渐变单独使用时不会生成警告,而不是与图像结合使用。