css how to turn details marker off code example
Example: remove arrow summary tag css
details > summary {
list-style: none;
}
details > summary::-webkit-details-marker {
display: none;
}
details > summary {
list-style: none;
}
details > summary::-webkit-details-marker {
display: none;
}