gpt4 book ai didi

css - 如何在 chrome 自动完成上删除蓝色背景

转载 作者:行者123 更新时间:2023-12-03 09:45:07 24 4
gpt4 key购买 nike

我正在制作一个表单并希望每个输入都是透明的,但是当我在 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com