Skip to content

Instantly share code, notes, and snippets.

@smonteverdi
Created March 7, 2012 15:48
Show Gist options
  • Save smonteverdi/1993896 to your computer and use it in GitHub Desktop.
Save smonteverdi/1993896 to your computer and use it in GitHub Desktop.
CSS: Text Field Rounded and Inset Shadow
input {
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
padding: 8px;
border: 0;
-webkit-box-shadow: inset 1px 1px 4px rgba(0,0,0,0.6);
-moz-box-shadow: inset 1px 1px 4px rgba(0,0,0,0.6);
box-shadow: inset 1px 1px 4px rgba(0,0,0,0.6);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment