I know that at the time of this writing only Opera supports a browser UI for
and maybe my attem
For mobile the best solution we have found is to use a text input for date entry, with a calendar icon next to it that has an invisible date input over the icon.
Advantages:
input type=date not supported by device/browser (e.g. some Android devices don't support date or have serious bugs).HTML is a something like:
CSS:
.date-input {
position: relative;
z-index: 1;
webkit-appearance: none;
display: inline-block;
opacity: 0;
width: 1em;
}
.date-input-icon {
position: absolute;
right: 0;
width: 1em;
}