Du kannst mit CSS ein wenig tricksen, um solch eine Darstellung zu erzielen:
ul {
list-style-type: none;
}
li::before{
content: '-';
}
Du kannst mit CSS ein wenig tricksen, um solch eine Darstellung zu erzielen:
ul {
list-style-type: none;
}
li::before{
content: '-';
}