Answers for "remove arrow summary tag css"

CSS
1

remove arrow summary tag css

details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}
Posted by: Guest on August-31-2020

Browse Popular Code Answers by Language