博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关闭chrome浏览器的input香蕉黄背景
阅读量:5262 次
发布时间:2019-06-14

本文共 1178 字,大约阅读时间需要 3 分钟。

chrome浏览器input的自动完成,点击之后自动输入,input的背景会变成香蕉黄,用如下方法修复:

/* Change the white to any color ;) 就是给input设置内置阴影!而且一定要大,至少要比你的input本身大,不过,box-shadow是很慢的,而且,如果你的input是用图片做背景的话,是没有办法做这么干的*/input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 100px white inset;}/* Additionally, you can use this to change the text color: */-webkit-text-fill-color: yellow !important;

或者

/* Change Autocomplete styles in Chrome*/input:-webkit-autofill,input:-webkit-autofill:hover, input:-webkit-autofill:focusinput:-webkit-autofill, textarea:-webkit-autofill,textarea:-webkit-autofill:hovertextarea:-webkit-autofill:focus,select:-webkit-autofill,select:-webkit-autofill:hover,select:-webkit-autofill:focus {
border: 1px solid green; -webkit-text-fill-color: green; -webkit-box-shadow: 0 0 0px 1000px #000 inset; transition: background-color 5000s ease-in-out 0s;}

或者直接关闭chrome的自动完成

<input type="text" autocomplete="off">

<form autocomplete="off"></form>

 

参考:https://stackoverflow.com/questions/2781549/removing-input-background-colour-for-chrome-autocomplete

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

转载于:https://www.cnblogs.com/mengff/p/7459970.html

你可能感兴趣的文章
NET Core 使用RabbitMQ
查看>>
WindowsXamlHost:在 WPF 中使用 UWP 控件库中的控件
查看>>
C#中将字符串转换成Md5值的方法
查看>>
C#图片处理之:旋转图片90度的整数倍
查看>>
UWP Windows历史上最漂亮的UWP框架出炉!!!
查看>>
【百度地图API】如何快速创建带有标注的地图?——快速创建地图工具+如何标注商家...
查看>>
SQLServer 扫盲
查看>>
快速构建Windows 8风格应用29-捕获图片与视频
查看>>
C#开发微信门户及应用(20)-微信企业号的菜单管理
查看>>
WPF界面设计技巧(10)-样式的继承
查看>>
返璞归真 asp.net mvc (9) - asp.net mvc 3.0 新特性之 View(Razor)
查看>>
JS 的Date对象
查看>>
Django (六) 视图 views
查看>>
男程序猿和女程序猿的网恋(一)
查看>>
docker介绍
查看>>
FMDB中常用SQL使用
查看>>
1124. Mosaic(dfs)
查看>>
poj2074Line of Sight(直线相交)
查看>>
ECMAScript中基本类型和引用类型的值在复制变量值时的区别
查看>>
Eclipse4.5在线安装Aptana插件及配置代码提示教程
查看>>