Answers for "how to hide selecg arrow icon using 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
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

Browse Popular Code Answers by Language