Answers for "hide arrow in select html"

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

hide select tag dropdown caret

appearance: none;
-webkit-appearance: none;
-moz-appearance: none;

/* For IE <= 11 */
select::-ms-expand {
   display: none;
}
Posted by: Guest on October-16-2020
-1

select box arrow hide css in ie

select::-ms-expand {
    display: none;
}
Posted by: Guest on July-03-2020

Browse Popular Code Answers by Language