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.