作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个表单并希望每个输入都是透明的,但是当我在 Chrome 中使用自动完成功能然后标签进入下一个字段时,前一个字段会变成淡蓝色背景。
我试过使用:
input:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0 30px white inset !important;
transition: background-color 5000s ease-in-out 0s;
}
color
时它保持透明至
transparent
也不起作用。
最佳答案
谷歌似乎对 shadow 属性做了一些魔法。这使它对我有用:
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}
关于css - 如何在 chrome 自动完成上删除蓝色背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55131944/
我是一名优秀的程序员,十分优秀!