Someone know how i can add a placeholder mm-aaaa
for a input type month
like we have with the input type date
? I put an example snippet.
<body>
<label for="month">Month: </label>
<input type="month" placeholder="foo" name="foo" id="month">
<label for="birth">Birth: </label>
<input type="date" placeholder="foo" name="foo" id="birth">
</body>
I always have --------
caracters, and i don't see how to change it.
Thank's