관리 메뉴

취미개발 블로그와 마음수양

autofill css 없애기 본문

FrontEnd/HTML5 _CSS

autofill css 없애기

아라한사 2020. 10. 2. 14:32

예전에도 했었나..아무튼.. 결론


/* Change the color to your own background color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
transition: background-color 5000s;
-webkit-text-fill-color: #fff !important;
}

 

selleo.com/til/posts/xhgzlfgcql-a-way-to-make-autofilled-inputs-background-transparent

 

A way to make autofilled inputs background transparent - Today I Learned

Consider the following form There’s an issue with that form - If it’s filled with chrome-stored credentials - it looks like this Here’s the selector for autofilled input: input:-webkit-autofill It’s possible to change color of this box, like this:

selleo.com

css-tricks.com/snippets/css/change-autocomplete-styles-webkit-browsers/

 

Change Autocomplete Styles in WebKit Browsers | CSS-Tricks

We got a nice tip from Lydia Dugger via email with a method for changing the styles that WebKit browsers apply to form fields that have been

css-tricks.com

 

'FrontEnd > HTML5 _CSS' 카테고리의 다른 글

Flex 에서 하나의 아이템만 가장 우측으로 가게  (0) 2020.10.23
[철학] SelectBox - DropDownlist 의 철학  (0) 2020.10.02
div 콘텐츠 길이에 따른 세로 정렬  (0) 2020.05.01
반응형 사이즈  (0) 2019.09.25
zzzz  (0) 2014.10.29