Removing input background colour for Chrome autocomplete?

前端 未结 30 2405
失恋的感觉
失恋的感觉 2020-11-22 04:02

On a form I\'m working on, Chrome is auto-filling the email and password fields. This is fine, however, Chrome changes the background colour to a pale yellow colour.

30条回答
  •  不知归路
    2020-11-22 04:14

    I have a pure CSS solution which uses CSS Filters.

    filter: grayscale(100%) brightness(110%);
    

    The grayscale filter replaces the yellow with grey, then the brightness removes the grey.

    SEE CODEPEN

提交回复
热议问题