How to remove clock symbol in input type time in html
I need to hide clock icon in input type html. with reference <input id="appt-time" type="time" name="appt-time" min="12:00" max="18:00" class='time'/> input[type="time"]::-webkit-calendar-picker-indicator { background: none; } this one working fine. Clock symbol is not showing. but i need that class to target…