Skip to content

Instantly share code, notes, and snippets.

@adamculpepper
Last active January 14, 2020 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamculpepper/8f03578738a00192472da7a4ef8429b3 to your computer and use it in GitHub Desktop.
Save adamculpepper/8f03578738a00192472da7a4ef8429b3 to your computer and use it in GitHub Desktop.
Required field indicator (Bootstrap 4)
.form-group.has-required {position:relative;}
.form-group.has-required:after {
content:'\f069';
font-family:'FontAwesome';
position:absolute;
top:1px;
right:1px;
padding:4px 7px;
text-align:center;
font-size:8px;
color:rgba(255, 0, 0, 0.20);
background:rgba(255, 0, 0, 0.10);
border-bottom-left-radius:4px;
border-top-right-radius:4px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment