+ 8
The default bullets can be replaced with other native options or completely removed using CSS to manipulate the list-style-type property. You can even change the UL bullet to a custom image or icon. Consider my example below: HTML: <ol class="mdj">List <li>Hello</li> <li>World</li> <li>What's up?</li> </ol> CSS: ol.mdj { list-style-type: arabic-indic; }
5th Mar 2019, 6:49 AM
MDJ_
MDJ_ - avatar