What will be Microsoft EDGE Browser alternatives of the following code?
background-image: linear-gradient(to right, rgba(226, 115, 20, 0.64) 0%, #ea2415b3 100%)
I tried Following codes:
background-image: -webkit-linear-gradient(to right, rgba(226, 115, 20, 0.64) 0%, #ea2415b3 100%);
background-image: -ms-linear-gradient(to right, rgba(226, 115, 20, 0.64) 0%, #ea2415b3 100%);
background-image: linear-gradient(to right, rgba(226, 115, 20, 0.64) 0%, #ea2415b3 100%);
Secondly, I tried to insert image and color in background but it displayed only color, not an image. I write this:
background : linear-gradient(0deg,#e97320,#000000),url(/img/Saturn_Astrologer.jpg) no-repeat center;
Thank You :)