Skip to content

Instantly share code, notes, and snippets.

@mrtwebdesign
Created June 13, 2013 19:56
Show Gist options
  • Select an option

  • Save mrtwebdesign/5776815 to your computer and use it in GitHub Desktop.

Select an option

Save mrtwebdesign/5776815 to your computer and use it in GitHub Desktop.
A CodePen by Matthew Taylor.
<div class="outerwrap">
<div class="boxcontent">
<div class="overlay clearfix">
overlay text
</div>
</div>
</div>
<div class="outerwrap">
<div class="boxcontent">
<div class="overlay clearfix">
overlay text here and a bunch more so it wraps
</div>
</div>
</div>
.clearfix:after {
content: "";
display: table;
clear: both;
}
.outerwrap{
display:block;
position:relative;
float:left;
outline: 1px solid green;
}
.boxcontent {
display:block;
position:relative;
outline: 1px solid black;
width: 200px;
height:200px;
}
.overlay {
position:absolute;
width:80%;
bottom:20px;
margin:0 10%;
background-color:rgba(0, 0, 0, 0.1);
border-radius:5px;
text-align:center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment