Change color of Chrome's calendar icon in HTML Date Input

后端 未结 3 1190
北恋
北恋 2021-01-11 11:36

I am having some difficulty styling the HTML 5 Date input in Chrome.

Using mark up such as

3条回答
  •  轮回少年
    2021-01-11 11:55

    Another example is;

    input[type="date"]::-webkit-calendar-picker-indicator {
      cursor: pointer;
      border-radius: 4px;
      margin-right: 2px;
      opacity: 0.6;
      filter: invert(0.8);
    }
    
    input[type="date"]::-webkit-calendar-picker-indicator:hover {
      opacity: 1
    }
    

提交回复
热议问题