no bullets in ul code example
Example 1: remove bullets from list css
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
Example 2: no bullets in ul
ul {
list-style-type: none;
}
/* if you want to remove indentation , set padding: 0 and margin: 0 */
/* if you want inline code*/
- ...
Example 3: html list without bullets
style="list-style-type:none;"