티스토리 뷰
HTML input type number 우측 화살표 제거하기
input tag 를 type number를 사용했을 때
해당 태그에 포커스를 주면 우측에 숫자를 +1, -1 할 수 있는 화살표가 생성된다.
제거하고 싶다면 아래 코드를 작성하면 된다.
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type='number'] {
-moz-appearance: textfield;
}
'Programming > HTML & CSS' 카테고리의 다른 글
class와 id 선택자를 중심으로 살펴보는 효율적인 렌더링을 위한 CSS 활용 (0) | 2021.10.12 |
---|---|
html button 요소에 type을 지정하는 이유 (0) | 2021.09.13 |
iOS에서 기본 적용된 input shadow 제거하기 (0) | 2021.09.08 |
HTML/CSS 네이밍 시 container와 wrapper의 차이 (3) | 2021.06.18 |
애니메이션 최적화 (Reflow, Repainting) (0) | 2020.12.22 |
댓글