Home  »  CodeGuidesProgrammingSnippetsTechnology   »   Remove Bullets From List in CSS Code

Remove Bullets From List in CSS Code

Posted: September 13, 2022 | by Michael Bright

Remove bullets from list in CSS example code snippet.

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* The padding and margin are used to remove the default indentation */

Remove bullets from list CSS using list-style.

ul {
  list-style: none;
}

Found this article interesting? Follow Brightwhiz on Facebook, Twitter, and YouTube to read and watch more content we post.