删除箭头输入类型='日期'

时间:2016-12-21 07:57:10

标签: html css input

我想从输入日期中删除右箭头。我想让它也适用于移动设备。

以下是我想删除的内容:

enter image description here

我尝试了什么

<input type="date" class="unstyled" />

.unstyled::-webkit-inner-spin-button,
.unstyled::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

在桌面上它不会出现..但在Android设备上会出现。

3 个答案:

答案 0 :(得分:4)

试试这个:

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

答案 1 :(得分:2)

android和web的解决方案:

.unstyled {
    -webkit-appearance: none;
}
.unstyled::-webkit-inner-spin-button,
.unstyled::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

答案 2 :(得分:0)

尝试一下

`.DatePickerInput::-webkit-inner-spin-button,
 .DatePickerInput::-webkit-calendar-picker-indicator {
     opacity:0;   
    -webkit-appearance: none;
 }`