-
Number타입 Input 에서 화살표 모양을 삭제하고 싶을 때HTML & CSS & JAVASCRIPT 2021. 10. 26. 16:16
넘버타입 input에서 화살표 증감 표시를 삭제하고 싶다면,
css에 다음과 같이 추가해주도록 하자.
/* 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; }
(참고한 사이트)
https://www.w3schools.com/howto/howto_css_hide_arrow_number.asp
How To Hide Arrows From Number Input
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
www.w3schools.com
'HTML & CSS & JAVASCRIPT' 카테고리의 다른 글
애니메이션 멈추기 (0) 2021.10.26 Number타입의 Input에서 증감 정도를 조절하고 싶을 때 (0) 2021.10.26 Weather App 만들기) Geolocation API 적용하기 (0) 2021.01.26 Rock-Paper-Scissors 만들기) 2. Javascript 완성하기 (0) 2021.01.24 Rock-Paper-Scissors 만들기) 1. HTML, CSS 완성하기 (0) 2021.01.24