gpt4 book ai didi

javascript - 如何更改输入类型 ="date"日期选择器的外观?

转载 作者:行者123 更新时间:2023-11-28 14:48:29 26 4
gpt4 key购买 nike

我想将 input type="date"日期选择器的默认外观从箭头更改为日历图标,并使其始终可见。

谷歌搜索这个问题发现很少。我看到以下 2012 年的帖子,上面说不可能,情况有变吗?

https://developers.google.com/web/updates/2012/08/Quick-FAQs-on-input-type-date-in-Google-Chrome

最佳答案

试试下面的代码:

[type="date"] {
background: #fff url(https://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/calendar_2.png) 97% 50% no-repeat;
}

[type="date"]::-webkit-inner-spin-button {
display: none;
}

[type="date"]::-webkit-calendar-picker-indicator {
opacity: 0;
}


/* custom styles */

body {
padding: 4em;
background: #e5e5e5;
font: 13px/1.4 Geneva, 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
}

label {
display: block;
}

input {
border: 1px solid #c4c4c4;
border-radius: 5px;
background-color: #fff;
padding: 3px 5px;
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.1);
width: 190px;
}
<div>
<h1>PURE CSS DATE PICKER</h1>
<label for="dateofbirth">Date Of Birth</label>
<input type="date" name="dateofbirth" id="dateofbirth">
</div>

您也可以尝试引导日期选择器:Bootstrap Datepicker

关于javascript - 如何更改输入类型 ="date"日期选择器的外观?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51945122/

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