2
3

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.

フォームのテキストボックスが設定した覚えがないのに背景黄色になっている場合

2
Posted at

背景が黄色になる条件

テキストボックスが「オートコンプリート」機能を使って入力されている場合。

仕様

chromeが持っている独自スタイル「user agent stylesheet」により背景黄色で表示されている。

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background-color: rgb(250, 255, 189);
  background-image: none;
  color: rgb(0, 0, 0);
}

回避方法

背景色に指定→×
シャドウで設定→○
とのこと

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

参考

2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?