2

For some reason, I want to hide the both arrow which comes on mouse over to input[type="date"] I used -webkit-appearance: none; but it's not working. Is there any other way to achive this?

enter image description here

HTML

<input type="date">

CSS:

input[type="date"], 
input[type="date"]:hover 
{border:0;
background:transparent;
-webkit-appearance: none;}

code example http://jsbin.com/vovuha/1/edit

Jitendra Vyas
  • 148,487
  • 229
  • 573
  • 852

1 Answers1

2

To hide all effects on hover you can use:

pointer-events: none !important;
Brane
  • 3,257
  • 2
  • 42
  • 53