Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Created June 28, 2020 14:03
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 vanaf1979/a77281a9b518bdfc426e05f1d9efe9c1 to your computer and use it in GitHub Desktop.
Save vanaf1979/a77281a9b518bdfc426e05f1d9efe9c1 to your computer and use it in GitHub Desktop.
Remove leading trailing margins with css
* > :first-child {
margin-top: 0;
}
* > :last-child {
margin-bottom: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment