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

show input type number arrows

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {  

   opacity: 1;

}
Comment

remove arrows input number

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

hide numericUpDown arrows

numericUpDown1.Controls[0].Visible = false;
Comment

PREVIOUS NEXT
Code Example
Css :: html position absolute center 
Css :: prevent enter key submitting a form jquery 
Css :: css first 
Css :: underline height 
Css :: soft box shadow css 
Css :: input text field with only bottom border 
Css :: ul no indent 
Css :: button mouse icon hover css 
Css :: italic css 
Css :: max z index 
Css :: how to allow scroll in div 
Css :: css list no bullets 
Css :: css image filter black and white 
Css :: center text 
Css :: linear-gradient(top to bottom) 
Css :: css beutify scroller 
Css :: bg color css 
Css :: html make text not highlightable 
Css :: remove button default border css 
Css :: gradient border css 
Css :: css click event jquery 
Css :: add youtube video in markdown 
Css :: how to make borders rounded in css 
Css :: css select every other element 
Css :: remove underline from <a HTML 
Css :: hiding button border when clicked 
Css :: css style media does not found cshtml 
Css :: how to stop browser from swipe left to right history-navigation javascript 
Css :: remove background when autofill input css 
Css :: degradado color css 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =