Does anyone know how to hide the calendar icon on a date field in Chrome? (input[type="date])
When I look it up I find that I should use "::-webkit-calendar-picker-indicator" but that doesn't seem to do the trick anymore...
Does anyone know how to hide the calendar icon on a date field in Chrome? (input[type="date])
When I look it up I find that I should use "::-webkit-calendar-picker-indicator" but that doesn't seem to do the trick anymore...
Try something like this
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
display: none;
-webkit-appearance: none;
}
<input type="date" class="date-input">