사용시 위/아래 화살표 제거 방법 .
/* 크롬, 사파리, 엣지, 오페라 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* 파이어폭스 */
input(type=number) {
-moz-appearance: textfield;
}
/* 크롬, 사파리, 엣지, 오페라 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* 파이어폭스 */
input(type=number) {
-moz-appearance: textfield;
}