Created
June 13, 2013 19:56
-
-
Save mrtwebdesign/5776815 to your computer and use it in GitHub Desktop.
A CodePen by Matthew Taylor.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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