When I use a linear-gradient on an image it shows a bunch of lines that are going across the screen as it fades to the bottom.
gradient clipping lines picture
I've tried looking this up and saw that the height shouldn't be 100% but when I changed it to what the person said it didn't change anything.
-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(11, 11, 11, 0)));
mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(11, 11, 11,0));
This is the gradient I'm using