zoukankan
html css js c++ java
去掉谷歌浏览器输入框的默认黄色背景
谷歌浏览器登录记住密码后 下次登录会自动填充,并且有黄色背景。
谷歌浏览器的设置如下:
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
rgb(250, 255, 189);
background-image:
none;
color:
rgb(0, 0, 0);
}
去掉黄色背景第一种方法是对它重写样式,使用!important提升优先级,除了chrome默认定义的background-color,background-image,color不能用!important提升其优先级以外,其他的属性均可使用!important提升其优先级。
input
:
-webkit-autofill
{
-webkit-box-shadow
:
0
0
0px
1000px
white inset
; //使用足够大的纯色内阴影覆盖黄色背景
border
:
1px
solid
#CCC
!important
;
}
试了上面的方法,如果input内有图片,
会将前面的图标一起遮罩。
查看全文
相关阅读:
Python 爬虫 解决escape问题
python 爬虫 重复下载 二次请求
iOS开发-消息通知机制(NSNotification和NSNotificationCenter)
iOS开发-UITableView自定义Cell
iOS开发-自定义UIAlterView(iOS 7)
iOS开发-CocoaPods实战
iOS开发-UICollectionView实现瀑布流
iOS开发-UITabBarController详解
iOS 开发-Certificate、App ID和Provisioning Profile之间的关系
iOS开发-View中frame和bounds区别
原文地址:https://www.cnblogs.com/nnf-888/p/8883245.html
最新文章
分享基于Entity Framework的Repository模式设计(附源码)
Asp.net MVC使用Model Binding解除Session, Cookie等依赖
Asp.net MVC使用Filter解除Session, Cookie等依赖
Entity Framework返回IEnumerable还是IQueryable?
Orchard是如何工作的?
推荐博客文章
如何扩展Orchard
Asp.net MVC
换个角度看委托
Asp.net mvc中的Ajax处理
热门文章
理解C# 4 dynamic(1)
理解C# 4 dynamic(2) – ExpandoObject的使用
Python 爬虫实例(13) 下载 m3u8 格式视频
爬虫过程中的 数据插入 问题及其解决方案
MySQL 两个数据库表中合并数据
爬虫的本质是什么?
HTTP 请求头 详解
使用 MD5 加密 去重对插入的影响
Python 爬虫 使用正则去掉不想要的网页元素
Python 图像下载解决图像损坏
Copyright © 2011-2022 走看看