Remove Datalist Dropdown Arrow in Chrome

前端 未结 5 2050
执念已碎
执念已碎 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:17

    input::-webkit-calendar-picker-indicator {
      opacity: 0;
    }
    

    Also removed the arrow for me and I found created a better clicking experience to still click where the arrow would be, you can even increase the the width and height of it > 1em and in the input maybe put a custom arrow as a background image, where the arrow would be.

提交回复
热议问题