Skip to content

Instantly share code, notes, and snippets.

@danielres
Created November 26, 2010 12:30
Show Gist options
  • Save danielres/716651 to your computer and use it in GitHub Desktop.
Save danielres/716651 to your computer and use it in GitHub Desktop.
quick notes for CSS3 cross-browser declarations
div {
-moz-box-shadow: black 1px 1px 15px 0;
-webkit-box-shadow: black 1px 1px 15px 0;
-o-box-shadow: black 1px 1px 15px 0;
box-shadow: black 1px 1px 15px 0;
}
div {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-o-border-radius: 10px;
-ms-border-radius: 10px;
-khtml-border-radius: 10px;
border-radius: 10px;
behavior: url(/htc/PIE.htc);
}
div {
text-shadow: #666666 5px 5px 5px;
filter: Shadow(Color=#666666, Direction=135, Strength=5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment