1

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?

awesomesyntax
  • 588
  • 5
  • 12

2 Answers2

5
input[type="date"]::-webkit-inner-spin-button{
    -webkit-appearance: none;
}
Paul
  • 2,186
  • 20
  • 26
2

Take a look at this answer which deals with the spinners on input[type="number"] elements (found via this question).

Community
  • 1
  • 1
Ross
  • 46,186
  • 39
  • 120
  • 173
  • 1
    Says a lot about SO's usefulness when the first search result is straight back here :) – Ross May 01 '11 at 23:23