How do I simulate placeholder functionality on input date field?

后端 未结 14 1451
生来不讨喜
生来不讨喜 2020-11-27 03:35

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.

14条回答
  •  被撕碎了的回忆
    2020-11-27 04:22

    You can use CSS's before pseudo.

    .dateclass {
      width: 100%;
    }
    
    .dateclass.placeholderclass::before {
      width: 100%;
      content: attr(placeholder);
    }
    
    .dateclass.placeholderclass:hover::before {
      width: 0%;
      content: "";
    }

    FIDDLE

提交回复
热议问题