Skip to content

Instantly share code, notes, and snippets.

@AlexMelw
Last active June 18, 2020 12:36
Show Gist options
  • Save AlexMelw/77d6b9e013ff9fc8d66ae73906317cc5 to your computer and use it in GitHub Desktop.
Save AlexMelw/77d6b9e013ff9fc8d66ae73906317cc5 to your computer and use it in GitHub Desktop.

There's no margin collapsing in Flexbox and Grid

Use this trick:

* {
    margin: 0;
}

* + * {
    margin: 1em 0 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment