bootstrap 5 no bullet list example

updated 18/04/22 By frontendshape

in this short tutorial we will see how to remove unstyled bullet in bootstrap 5. first you need to setup bootstrap 5 project or you can read below article.

How to install & setup bootstrap 5


Example

1) bootstrap 5 no bullets with inline css.

<ul style="list-style-type: none;">
  <li>This is a list 1.</li>
  <li>This is a list 2.</li>
  <li>This is a list 3.</li>
</ul> 


2) You can use list-unstyled class to remove bullet in ul to li list.

<ul class="list-unstyled">
  <li>This is a list 1.</li>
  <li>This is a list 2.</li>
  <li>This is a list 3.</li>
</ul>
bootstrap 5 no bullet

bootstrap 5 no bullet