Skip to content

Instantly share code, notes, and snippets.

@darnocer
Last active August 13, 2022 15:21
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 darnocer/cb1cce1bb249054e00547be1a3988d27 to your computer and use it in GitHub Desktop.
Save darnocer/cb1cce1bb249054e00547be1a3988d27 to your computer and use it in GitHub Desktop.
Exclude Last Child from Styles in CSS

Exclude Last Child from Styles

// a right margin on each element except the last one

.class{
  &:not(:last-child) {
    margin-right: 1rem;
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment