It\'s impossible to use placeholder on date fields but I really need it.
I want two date inputs with texts \"From\" and \"To\" on each one as placeholders.
CSS
input[type="date"] {position: relative;} input[type="date"]:before { position: absolute;left: 0px;top: 0px; content: "Enter DOB"; color: #999; width: 100%;line-height: 32px; } input[type="date"]:valid:before {display: none;}