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

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

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

Using mark up such as

3条回答
  •  Happy的楠姐
    2021-01-11 11:57

    I've managed to work around it for now using a CSS filter to invert the black color to white

    ::-webkit-calendar-picker-indicator {
        filter: invert(1);
    }
    

    However this feels quite fragile and far from ideal.

提交回复
热议问题