Skip to content

Instantly share code, notes, and snippets.

@byrichardpowell
Created August 25, 2012 15:46
Show Gist options
  • Save byrichardpowell/3467258 to your computer and use it in GitHub Desktop.
Save byrichardpowell/3467258 to your computer and use it in GitHub Desktop.
Use browser prefixes correctly
.shadow { -webkit-box-shadow: 10px 10px 10px #000;
-moz-box-shadow: 10px 10px 10px #000;
-o-box-shadow: 10px 10px 10px #000;
-ms-box-shadow: 10px 10px 10px #000;
box-shadow: 10px 10px 10px #000; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment