Good day.
I am having an issue getting linear-gradient to work when I test it on IE 11. In every other browser I have tested including Chrome, FireFox, Edge, etc. everything works as expected but IE does not render things correctly.
During my search for answers I reviewed multiple stack overflow posts - post one and post two. Although those posts and others provide some insight, based on my review, my CSS should work - see below.
CSS{
background-color: rgba(0, 0, 0, 0.6) 50%;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,
0, 0, 0.6) 50%), to(transparent));
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 50%,
transparent);
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 50%,
transparent);
background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.6) 50%,
transparent);
background: -o-linear-gradient(top, rgba(0, 0, 0, 0.6) 50%,
transparent);
display: block;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-
}
Of the CSS above, I assume I will need to adjust something related to the -ms-linear-gradient line. I have also included an image for review as well; the top image is what I want things to look like in IE.
If anyone can provide any additional perspective or insight it would be appreciated.