Disable native datepicker in Google Chrome

The Solution to Disable native datepicker in Google Chrome is


To hide the arrow:

input::-webkit-calendar-picker-indicator{
    display: none;
}

And to hide the prompt:

input[type="date"]::-webkit-input-placeholder{ 
    visibility: hidden !important;
}

~ Answered on 2012-09-04 16:45:45


Most Viewed Questions: