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?

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