Skip to content

Instantly share code, notes, and snippets.

@b4z81
Created April 5, 2012 08:37
Show Gist options
  • Save b4z81/2309210 to your computer and use it in GitHub Desktop.
Save b4z81/2309210 to your computer and use it in GitHub Desktop.
image effects
.polaroid {
position: relative;
width: 220px;
}
.polaroid img {
border: 10px solid #fff;
border-bottom: 45px solid #fff;
-webkit-box-shadow: 3px 3px 3px #777;
-moz-box-shadow: 3px 3px 3px #777;
box-shadow: 3px 3px 3px #777;
}
.polaroid p {
position: absolute;
text-align: center;
width: 100%;
bottom: 0px;
font: 400 18px/1 'Kaushan Script', cursive;
color: #888;
}
<div class="polaroid">
<p>Sarah, Dec '02</p>
<img src="http://lorempixum.com/200/200/people/1" />
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment