Skip to content

Instantly share code, notes, and snippets.

@sergiu-radu
Created January 19, 2021 20:33
Show Gist options
  • Save sergiu-radu/3871e9fd51f4532c85d9feb97629f932 to your computer and use it in GitHub Desktop.
Save sergiu-radu/3871e9fd51f4532c85d9feb97629f932 to your computer and use it in GitHub Desktop.
Remove spacing between paragraphs
// first method
.my-selector p {
margin-bottom: 0;
}
// second method
.my-selector p {
--contentSpacing: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment