追記
- 2019/3/1 オートコンプリートの色が水色(#e8f0fe/rgb(232, 240, 254))になったみたいです。
#CSSでの解決策
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px [背景にしたい色] inset;
}
#HTMLでの解決策
<form autocomplete="off">
</form>
<input autocomplete="off">
#jQueryでの解決策
if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) {
$('input').attr('autocomplete', 'off');
}