gpt4 book ai didi

html - 如何在输入日期字段上模拟占位符功能?

转载 作者:技术小花猫 更新时间:2023-10-29 11:38:14 26 4
gpt4 key购买 nike

不可能在日期字段上使用占位符,但我确实需要它。

我想要两个日期输入,每个日期输入文本“From”和“To”作为占位符。

最佳答案

我只使用了以下 CSS 技巧:

  input[type="date"]:before {
content: attr(placeholder) !important;
color: #aaa;
margin-right: 0.5em;
}
input[type="date"]:focus:before,
input[type="date"]:valid:before {
content: "";
}
<input type="date" placeholder="Choose a Date" />

关于html - 如何在输入日期字段上模拟占位符功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18146350/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com