Skip to content

Instantly share code, notes, and snippets.

@boyofgreen
Created March 26, 2012 16:46
Show Gist options
  • Save boyofgreen/2206434 to your computer and use it in GitHub Desktop.
Save boyofgreen/2206434 to your computer and use it in GitHub Desktop.
live form css
input:required {
border: 1px solid #16cc16; /*green */
-moz-box-shadow: 0px 0px 11px #16cc16;
-webkit-box-shadow: 0px 0px 11px #16cc16;
box-shadow: 0px 0px 11px #16cc16;
outline: none;
}
input:invalid {
border: 1px solid #f5ba0a; /*yellow*/
-moz-box-shadow: 0px 0px 11px #f5ba0a;
-webkit-box-shadow: 0px 0px 11px #f5ba0a;
box-shadow: 0px 0px 11px #f5ba0a;
outline:none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment