Is it possible to skip errors for -linear-gradient syntax
Hi,
Is it possible to turn the errors produced when using one of the following lines into a message (like you do with 'Found the unknown proprietary Safari/WebKit property "-webkit-box-shadow". Unknown proprietary Safari/WebKit properties that begin with a dash are ignored and their values are not checked. Proprietary Safari/WebKit properties may only work in Safari and WebKit based browsers and will probably not work in other browsers like Firefox, Internet Explorer, and Opera. There may be other proprietary Safari/WebKit properties. This message is displayed only once.') ?
background: -moz-linear-gradient(top, top, white, #d5eaff 95%);
background: -webkit-gradient(linear, top, white, #d5eaff 95%);
background: -webkit-linear-gradient( top, white, #d5eaff 95%);
background: -o-linear-gradient(top, top, white, #d5eaff 95%);
background: linear-gradient(top, top, white, #d5eaff 95%);
I am using this syntax to produce gradients and need the various syntax lines for different browsers (maybe I don't need all of them, but you get the picture).
Thanks
Is it possible to turn the errors produced when using one of the following lines into a message (like you do with 'Found the unknown proprietary Safari/WebKit property "-webkit-box-shadow". Unknown proprietary Safari/WebKit properties that begin with a dash are ignored and their values are not checked. Proprietary Safari/WebKit properties may only work in Safari and WebKit based browsers and will probably not work in other browsers like Firefox, Internet Explorer, and Opera. There may be other proprietary Safari/WebKit properties. This message is displayed only once.') ?
background: -moz-linear-gradient(top, top, white, #d5eaff 95%);
background: -webkit-gradient(linear, top, white, #d5eaff 95%);
background: -webkit-linear-gradient( top, white, #d5eaff 95%);
background: -o-linear-gradient(top, top, white, #d5eaff 95%);
background: linear-gradient(top, top, white, #d5eaff 95%);
I am using this syntax to produce gradients and need the various syntax lines for different browsers (maybe I don't need all of them, but you get the picture).
Thanks