Skip to content

Instantly share code, notes, and snippets.

@andreisoriga
Last active December 28, 2015 07:36
Show Gist options
  • Select an option

  • Save andreisoriga/4461246 to your computer and use it in GitHub Desktop.

Select an option

Save andreisoriga/4461246 to your computer and use it in GitHub Desktop.
CSS3 styles
/* shadow */
-moz-box-shadow:0 0 7px rgba(0, 0, 0, 0.4);
-webkit-box-shadow:0 0 7px rgba(0, 0, 0, 0.4);
box-shadow:0 0 7px rgba(0, 0, 0, 0.4);
/* border radius */
-moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px;
/* inset shadow */
-moz-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.4);
-webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.4);
box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.4);
/* inline block */
display:inline-block;
vertical-align:top;
zoom: 1;
*display: inline;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment