I've tried various things and have not found anything that works. I thought it would just be something like:
input[type="date"] { -webkit-appearance: none; }
But this didn't work. Does any know how to remove them?
I've tried various things and have not found anything that works. I thought it would just be something like:
input[type="date"] { -webkit-appearance: none; }
But this didn't work. Does any know how to remove them?
input[type="date"]::-webkit-inner-spin-button{
-webkit-appearance: none;
}
Take a look at this answer which deals with the spinners on input[type="number"]
elements (found via this question).