0

I need to remove the default placeholder in the date input type

i have done like this

<input
id="date-picker"
ref="dateEle"
v-model="selectedDate"
type="date"
class="block w-full select-none rounded-lg border bg-transparent p-3.5 text-transparent placeholder-shown:text-transparent focus:border-onLight-300 focus:text-transparent focus:ring-onLight-300 active:text-transparent"`your text`
/>

but it is not working when i click on the clander icon it shows a small selection and there we can see that placeholder`

Barmar
  • 741,623
  • 53
  • 500
  • 612

1 Answers1

0

You can add this styles

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
    color: transparent;
}
Red Hat
  • 1
  • 2