51
41

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Chrome】オートコンプリートのとき、背景を黄色にしない

Last updated at Posted at 2014-06-25

追記

  • 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');
}

デモ:http://jsdo.it/Ituki/cenx

51
41
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
51
41

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?