I'm trying to accomplish some thing like:
Where I have the bottom of a div fading into the color of the div that comes after. Not sure what the best way to accomplish this is to use a linear gradient or an image.
I have tried this solution and it resulted in this:
Which is close but the fade begins a bit high.
.sumo-section {
-webkit-mask-image: -webkit-gradient(linear, left top,
left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
}
How should I modify it to get the transition to begin further down the div?