A Pen by Captain Anonymous on CodePen.
Created
September 18, 2015 21:29
-
-
Save williameliel/889e5ab8c49ed7dcfb15 to your computer and use it in GitHub Desktop.
OyNqOG
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="backdrop"> | |
<p>Etiam molestie placerat aliquet. Fusce bibendum sem non risus condimentum, at ullamcorper turpis mollis. Nam rhoncus sapien vel porttitor tempus. Nullam quis ex erat. Etiam bibendum risus sed ante vehicula, a mollis urna tristique. Sed tellus felis, porttitor sed justo sed, faucibus porttitor sem. Morbi vulputate eget tellus quis sodales. Mauris pharetra pretium orci et dictum. Phasellus sed facilisis turpis.</p> | |
</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
div{ | |
width:300px; | |
border: 1px solid blue; | |
background-color: #FFFFFF; | |
position:relative; | |
} | |
p{ | |
padding:0 10px | |
} | |
.backdrop:after{ | |
content:''; | |
border: 1px solid red; | |
height: 100%; | |
width:100%; | |
position: absolute; | |
top:10px; | |
left:10px; | |
background-color: #ffffff; | |
z-index:-110; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment