Answers for "how to remove arrow icon in dropdown html css"

CSS
1

select list hide default arrow

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
Posted by: Guest on August-24-2021
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