Is there any way across browsers to hide/remove the spin boxes I am looking for a CSS or JavaScript method to prevent the up/down arrows from appearing.
<input type="time" name="time1">
Is there any way across browsers to hide/remove the spin boxes I am looking for a CSS or JavaScript method to prevent the up/down arrows from appearing.
<input type="time" name="time1">
Try this css:
input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
<input type="time">