How to remove or change the bullets from Lists by CSS
To
achieve this we have to use the list-style-type property like so:
<ul>
<li>red </li>
<li>blue </li>
<li>green</li>
</ul>
CSS
to remove the bullets
<style>
li{ list-style-type:none; }
</style>
CSS
to change the different bullets
<style>
li{ list-style-type:circle; }
</style>
There
are different types of bullets you can use
here is the list use according to your needs.
decimal,disc,aremian,Georgian,hiragana
and more.
Comments
Post a Comment
Thanks for Visiting for any questions or suggestions please comment below
Cheers,