美文网首页侃大山——IT技术大杂烩
chrome浏览器记住密码后默认填充样式

chrome浏览器记住密码后默认填充样式

作者: 不叫ShaoYu的老王同学 | 来源:发表于2020-01-14 14:57 被阅读0次

使用记住密码并自动填充后,输入框会出现黄色/灰色的浏览器默认样式,此时在vue中添加如下代码

<style>

input:-webkit-autofill {

-webkit-box-shadow: 0 0 0px 1000px #ffffff inset!important;

-webkit-text-fill-color: #3E3E3E !important;

}

</style>

如果style标签添加scoped记得对input添加”>>>“进行穿透

相关文章

网友评论

    本文标题:chrome浏览器记住密码后默认填充样式

    本文链接:https://www.haomeiwen.com/subject/tbhaactx.html