IMAGE WITH FLOOR FADE
IMAGE WITH FLOOR FADE
by Jairo Fontes
HTML
<div class="test">
<p>Beautiful image with floor fade</p>
</div>
CSS
.test {
width: 500px;
height: 400px;
background-size: cover;
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6) ), url("https://download.unsplash.com/photo-1428604467652-115d9d71a7f1");
position: relative;
}
.test p {
font-size: 24px;
color: #fff;
text-transform: uppercase;
font-family: sans-serif;
position: absolute;
bottom: 10px;
left: 25px;
}