Skip to content

Instantly share code, notes, and snippets.

@gavinblair
Created October 20, 2010 17:09
Show Gist options
  • Save gavinblair/636842 to your computer and use it in GitHub Desktop.
Save gavinblair/636842 to your computer and use it in GitHub Desktop.
Adds : after labels and * after required labels
/* Adds : after labels */
form label:after{
content:":";
}
/* Adds * after required labels */
form label.required:after{
content:"*";
}
@gavinblair
Copy link
Author

Right, I guess that makes more sense (re: form vs. #myform). Updated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment