Entfernen Sie Kugeln aus der Liste CSS
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
1337
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
/* do this in CSS to hide the bullets from ul list*/
ul {
list-style: none;
}
ul.ba {
list-style-type: none;
}
ul{
list-style: none;
}