Using the Hoshibe css trick really helped, but should have added "left: 0;" to center the input window and no overflow.
div{
position:relative;
width: 99%;
}
input[type="date"]{
position:absolute;
width:auto;
right:0;
left: 0;
}
Then, adding the code below to enter [type = "date"] will align the text to the right.
text-align: right;
display: block;
This fixed the issue on iOS 7 and 8.
source
share