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

remove arrows input number

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

remove numericUpDown arrows

numericUpDown1.Controls.RemoveAt(0);
Comment

PREVIOUS NEXT
Code Example
Css :: how to make image not draggable in html 
Css :: how do i update my gatsby version? 
Css :: css way media query 
Css :: remove bullets from ul 
Css :: media query min and max 
Css :: css resize checkbox 
Css :: rainbow linear gradient css 
Css :: css ol align center 
Css :: css all ids starting with 
Css :: not clickable css 
Css :: how to apply css to firefox only 
Css :: styling scrollbar css 
Css :: css inner shadow 
Css :: inline styling width 
Css :: remove ul decoration 
Css :: media query for mobile view css 
Css :: input autocomplete css color 
Css :: radio checked css 
Css :: keep background image fixed during scroll using css 
Css :: scrollbar thumb height css 
Css :: css remove blue outline button 
Css :: css background half one color the other half another color 
Css :: hide cursor css 
Css :: how to use html and css to design a chess board 
Css :: tailwindcss init full 
Css :: css smooth text shadow 
Css :: grid center align 
Css :: add black layer on image css 
Css :: how to enlarge image when hover on in css 
Css :: css photo circle 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =