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 :: remove style from link 
Css :: how to do a smooth transform scale 
Css :: Hide calendar icon 
Css :: custom selection color css 
Css :: css center elment screen 
Css :: css rotate 90 deg 
Css :: background color none 
Css :: button css shadow 
Css :: css not first child 
Css :: html center video 
Css :: how to mirror object through css 
Css :: css text no word wrap 
Css :: bootstrap 4 center image 
Css :: add image ::before css 
Css :: disable link using css 
Css :: @media for mobile 
Css :: how to cover entire div with background image 
Css :: prevent enter key submitting a form jquery 
Css :: prevent text from going to next line css 
Css :: use woff2 font in css 
Css :: add google font 
Css :: list style position 
Css :: css img scale-down 
Css :: keyframe fade down css 
Css :: bg color css 
Css :: font awesome before after 
Css :: css grid center 
Css :: css stop scrollbar 
Css :: how to make font awesome responsive bootstrap 
Css :: css media screen 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =