Skip to content

Instantly share code, notes, and snippets.

@ryanve
Created March 31, 2017 21: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 ryanve/12d143b6b4a0435221e678d58c794e53 to your computer and use it in GitHub Desktop.
Save ryanve/12d143b6b4a0435221e678d58c794e53 to your computer and use it in GitHub Desktop.
CSS inherit utility classes
.inherit-font {
font: inherit;
}
.inherit-size {
font-size: inherit;
}
.inherit-family {
font-family: inherit;
}
.inherit-weight {
font-weight: inherit;
}
.inherit-color {
color: inherit;
}
.inherit-background {
background: inherit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment