Post

[:autofill] input 자동완성 가상선택자

:autofill

input에서 자동완성 항목 호버나 선택 시의 스타일을 지정한다.

1
2
3
4
5
6
7
8
9
10
11
input {
  border: 3px solid grey;
  border-radius: 3px;
}

input:-webkit-autofill {
  border: 3px solid blue;
}
input:autofill {
  border: 3px solid blue;
}

참고사이트

:autofill

This post is licensed under CC BY 4.0 by the author.