How do you make a list not display bullet points?

1 answer

Answer

1092003

2026-07-23 04:26

+ Follow

To make a list not display bullet points in HTML and CSS, you can use the CSS property list-style-type. Set it to none for the <ul> or <ol>. For example, you can use the following CSS:

<code class="language-css">ul {

list-style-type: none; }

</code>

This will remove the bullet points from the unordered list.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.