Skip to content

Instantly share code, notes, and snippets.

@dompascal
Created November 23, 2013 10:55
Show Gist options
  • Save dompascal/7613220 to your computer and use it in GitHub Desktop.
Save dompascal/7613220 to your computer and use it in GitHub Desktop.
CSS - Shadows
-moz-box-shadow: 0px 0px 7px #666;
-webkit-box-shadow: 0px 0px 7px #666;
box-shadow: 0px 0px 7px #666;
/* For IE 8 */
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment