I am looking for a perfect solution for cross browser linear gradient including IE 8 and below support.
this is my current code
background: rgba(0,0,0,0.6);
background: -webkit-gradient(linear, center top, center bottom, from(transparent), to(rgba(0, 0, 0, .6)));
background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .6));
background: linear-gradient(transparent, rgba(0, 0, 0, 0.6)) repeat scroll 0 0 rgba(0, 0, 0, 0);
I want to generate the same effect for different browsers. Please let me know how to get the exact same effect on all browsers by adding cross browser css code.
Thank you.