background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url('/img/arrow-right.svg');
As is, it's generating this error in CSS Lint:
WARNING: Expected end of value but found 'to(url('/img/arrow-right.svg'))'. Properties should be known (listed in CSS3 specification) or be a vendor-prefixed property. (known-properties) Browsers: All
I'm getting an error with
-webkit-gradient
syntax when using multiple backgrounds.Input:
Output:
That first like is wrong. I believe it should be:
As is, it's generating this error in CSS Lint: