<div class="module">
<h2>Title here</h2>
</div>
<div class="module opp">
<h2>Running Shoes and Water</h2>
</div>
.module {
margin: 10px;
width: 230px;
height: 150px;
float: left;
background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/3/shoes.jpg);
background-size: cover;
position: relative;
}
h2 {
position: absolute;
bottom: 10px;
left: 10px;
background: rgba(0, 0, 0, 0.75);
padding: 4px 8px;
color: white;
margin: 0;
font: 14px Sans-Serif;
}
.opp h2 {
background: rgba(255, 255, 255, 0.75);
color: black;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.