I'm using html5 date input, but in a new form Chrome is not displaying the full values correctly. The format is DD-MM-YYYY, but the YYYY part shows up blank. I can see the value is there though.
Seems as if the white space on the right side of the input is reserved for the controls (cross to clear value, up/down arrow, dropdown-arrow).
I don't have space to make the input wider. How to make the full date visible?
Example: http://jsfiddle.net/U6MYy/
<input type="date" value="2014-04-07"/>
with
input { width: 80px; }