当前位置:网站首页>Remove the default background color of chrome input input box

Remove the default background color of chrome input input box

2022-07-07 22:21:00 Belden wind


 input.input:-webkit-autofill {
    
            box-shadow: 0 0 0 30px var(--gray) inset !important;
        }
 input.input:-webkit-autofill:focus {
    
     box-shadow: 0 0 0 1000px var(--gray) inset !important;
 }
 input.input:-internal-autofill-previewed, input.nput:-internal-autofill-selected {
    
     -webkit-text-fill-color: var(--font-color) !important;
     transition: background-color 5000s ease-in-out 0s !important;
     font-size: 14px !important;
 }
原网站

版权声明
本文为[Belden wind]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202130607022088.html