Hallo
das Symbol vor dem Details- bzw. dem Summary-Element kann mit folgendem CSS angepasst werden:
details:not(open) summary::after { content: ' ►'; } details[open] summary::after { content: ' ◄'; } summary::before { content: ""; width: 0; }
hier habe ich noch ein
summary::-webkit-details-marker { display: none; }
summary { list-style-type: none; }
vergessen, und das summary::before { content: ""; width: 0; }
kann weg.
Gruß
Jürgen