I am trying to remove the bullets showing in the unordered list using bootstrap. I have tried the "text-decoration-none" class but no use.
Asked
Active
Viewed 2,678 times
3
-
2Does this answer your question? https://stackoverflow.com/a/17596978/7845355 – Felix G Jan 04 '22 at 10:56
3 Answers
0
You should add type attribute in ul tag and set the value none
<ul type=none>
<li>Lorem ipsum dolor sit amet.</li>
<li>Voluptatum culpa iure temporibus quisquam.</li>
<li>Dolor enim quas sint iusto.</li>
</ul>
You can do this by css by the following code -
ul{
list-style-type: none;
}

Gahan Vig
- 196
- 2
- 13
0
You can try this CSS
ul, li {list-style-type: none;}
It will globally removed bullets from the unordered list. you can use specific class.

Md. Shahidul Islam
- 330
- 3
- 10