Skip to content

Instantly share code, notes, and snippets.

@seouri
Created April 21, 2010 12:16
Show Gist options
  • Save seouri/373755 to your computer and use it in GitHub Desktop.
Save seouri/373755 to your computer and use it in GitHub Desktop.

Revisions

  1. seouri created this gist Apr 21, 2010.
    9 changes: 9 additions & 0 deletions dropshadow.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    .shadow {
    -moz-box-shadow: 3px 3px 4px #000;
    -webkit-box-shadow: 3px 3px 4px #000;
    box-shadow: 3px 3px 4px #000;
    /* 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');
    }