Skip to content

Instantly share code, notes, and snippets.

@mgaebler
Last active March 3, 2022 12:35
Show Gist options
  • Save mgaebler/b3a68928bccba0552b9e11d444969adc to your computer and use it in GitHub Desktop.
Save mgaebler/b3a68928bccba0552b9e11d444969adc to your computer and use it in GitHub Desktop.
Placeholder hack for <input type="date" />
input[type="date"]:before {
content: attr(placeholder) !important;
display: block;
width: 100%;
}
input[type="date"]:focus:before,
input[type="date"]:valid:before {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment