Remove background arrow from date input in Google Chrome v20

后端 未结 6 1530
我寻月下人不归
我寻月下人不归 2020-11-28 08:06

Since Google Chrome v20 a new calendar has been added to date inputs. The issue with this is that I\'m using javascript to create my own calendar and I have an icon already

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-28 08:45

    As of this writing, webkit has introduced controls to handle this:

    input[type="date"]::-webkit-calendar-picker-indicator{
        /* Your CSS here */
    }
    input[type="date"]::-webkit-inner-spin-button {
        /* Your CSS here */
    }
    

    So, for this particular issue, it would be:

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

提交回复
热议问题