Answers for "how to remove arrow from detail tag in 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
0

html css hide details arrow

details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}
Posted by: Guest on June-14-2021

Code answers related to "how to remove arrow from detail tag in css"

Browse Popular Code Answers by Language