Search
 
SCRIPT & CODE EXAMPLE
 

CSS

get rid of arrows number input

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
Comment

input number hide arrows


/* hide arrows
 Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}
Comment

how to take off arrow in input number

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; 
}
Comment

remove arrows input number

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { 
	-webkit-appearance: none;
}
Comment

PREVIOUS NEXT
Code Example
Css :: css second td in table 
Css :: hide scrollbar css 
Css :: css media queries 
Css :: no bullets in ul 
Css :: overflow dottet 
Css :: css underline color 
Css :: overlay css background image 
Css :: make text not selectable 
Css :: css image transform flip mirror 
Css :: css rotate 180 degrees 
Css :: skeleton css cdn 
Css :: css wordwrap 
Css :: not disabled css 
Css :: up scale body css 
Css :: html make footer stick to bottom 
Css :: css @media 
Css :: html table td spacing 
Css :: css image sharpen 
Css :: input text field with only bottom border 
Css :: css resize image without distortion 
Css :: inner box shadow 
Css :: css set width of a span 
Css :: center text 
Css :: customize highlight color website 
Css :: css div side rounded 
Css :: css trim text 
Css :: center align in grid 
Css :: schatten css 
Css :: ipad specific media query 
Css :: media screen 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =