I've encountered an issue while trying to create a date picker using the code below in Chrome version 54.
<input type="date">
Here is the CSS I'm using:
input {
height: 35px;
line-height: 35px;
box-sizing: border-box;
vertical-align: middle;
}
The problem arises in the result where the buttons on the right are not vertically aligned properly, as they align to the top instead of the middle.
https://i.sstatic.net/C8w9V.png
Does anyone know of a way to fix this so that the buttons align to the middle?