Skip to content

Instantly share code, notes, and snippets.

@iurevych
Created December 11, 2013 12:31
Show Gist options
  • Save iurevych/7909598 to your computer and use it in GitHub Desktop.
Save iurevych/7909598 to your computer and use it in GitHub Desktop.
Auto-appending asterisk to a required field label in Rails
.form-field.is-required
= f.label :name
= f.text_field :name, required: true
:css
.form-field.is-required > label:first-child:after {
content: '*';
margin-left: 2px;
}
@richddr
Copy link

richddr commented Jul 13, 2017

Sweet, just what I needed. Thanks!

@soulfly
Copy link

soulfly commented May 11, 2018

Great, thanks!

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