×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
1
Language: CSS
Posted by: Philip Rehberger
Added: Sep 14, 2016 12:04 AM
Views: 2078
Tags: no tags
  1. img.polaroid {
  2.     background:#000; /*Change this to a background image or remove*/
  3.     border:solid #fff;
  4.     border-width:6px 6px 20px 6px;
  5.     box-shadow:1px 1px 5px #333; /* Standard blur at 5px. Increase for more depth */
  6.     -webkit-box-shadow:1px 1px 5px #333;
  7.     -moz-box-shadow:1px 1px 5px #333;
  8.     height:200px; /*Set to height of your image or desired div*/
  9.     width:200px; /*Set to width of your image or desired div*/
  10. }