select {
-moz-appearance:none; /* Firefox */
-webkit-appearance:none; /* Safari and Chrome */
appearance:none; /* 화살표 없애기 공통*/
}
select::-ms-expand { /* IE10, IE11*/
display:none; /*숨겨진 화살표의 영역유지 X */
display:hidden; /*숨겨진 화살표의 영역유지 O */
}
새로운 화살표를 추가하고 싶다면 ::after, ::before
또는
background-image
등등 사용하면 된다
끗