Skip to content

Instantly share code, notes, and snippets.

@doceazedo
Created July 22, 2020 15:25
Show Gist options
  • Save doceazedo/17d10436152feba2ebd2e79bc3e09d7d to your computer and use it in GitHub Desktop.
Save doceazedo/17d10436152feba2ebd2e79bc3e09d7d to your computer and use it in GitHub Desktop.
CSS: Reset unordered lists style
ul,
ul li {
margin: 0;
padding: 0;
text-indent: 0;
list-style-type: none;
}
@doceazedo
Copy link
Author

Trick to remove the ::marker pseudo element:

::marker {
  font-size: 0;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment