Home  »  CodeGuidesLibrariesProgrammingSnippetsTechnology   »   How to Remove List Dots in li Bootstrap 5

How to Remove List Dots in li Bootstrap 5

Posted: October 3, 2022 | by Michael Bright

Using the Bootstrap 5 list style none class:

<ul>
   <li className="list-unstyled">Facebook</li>
   <li className="list-unstyled">LinkedIn</li>
   <li className="list-unstyled">Instagram</li>
</ul>

Using Bootstrap ul no style option:

<ul class="list-unstyled">
   <li>...</li>
</ul>

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