I'm

Developer, Designer, Photographer

GET IN TOUCH

  • Buk-gu, Busan, Republic of Korea
  • ungdoli0916@naver.com
  • Kakao ID : Ungdoli
Your message has been sent. Thank you!
(즐거웅코드) CSS input number 우측 증가/감소 화살표 없애기

· 즐거'웅' 코드 (Source)/HTML & CSS & JAVASCRIPT
2021. 4. 30. 11:40

반응형

[즐거'웅'코드] 목차

  1. CSS
  2. 예제 소스
CSS
1
2
3
4
5
6
<style>
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }
</style>
예제 소스
1
2
3
4
5
6
7
8
<input type="number"/>
 
<style>
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }
</style>
반응형