I have an input tag that have an icon for pick date from calendar . On firefox browser there is an close button after picking date . How can I disable that button. here is that button
CodePudding user response:
Adding required to the input works for me in both Chrome and Firefox:
<input type="time" required>
<input type="date" required>