Remove Datalist Dropdown Arrow in Chrome

前端 未结 5 2051
执念已碎
执念已碎 2021-02-02 05:57

Chrome has apparently added a dropdown arrow to text inputs that reference a . It\'s appearing in Chrome 34 (Canary) but not in the current stable b

5条回答
  •  生来不讨喜
    2021-02-02 06:06

    Thanks to the comment by alexander farkas, here is the style rule to remove the arrow:

    input::-webkit-calendar-picker-indicator {
      display: none;
    }
    

提交回复
热议问题