I've seen this question asked before in here Can I hide the HTML5 number input’s spin box?, and some others have asked with a specific request for a Browser, in my case what i want to know is: Is there a way to create a css class like .no-spin
to hide the spin arrows across browsers?
I tried:
.no-spin {
-webkit-appearance: none;
margin: 0;
-moz-appearance:textfield;
}
But no luck, I don't really know that much about css in fact...