如何去掉mac下chorme user agent stylesheet 给记住用户名的 input 框添加的黄色背景

这个问题刚刚问过了,两种方法都试了一下,还是不行,再次麻烦大家给点建议,
之前的链接在此:
https://segmentfault.com/q/10...

阅读 4.2k
1 个回答

我在 Google Chrome 版本 54.0.2840.99 m 测试是OK的,HTML 页面代码如下,注释掉style才会看到那个屎黄色

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>测试chrome自动填充</title>
    <style>
        input:-webkit-autofill {
            -webkit-box-shadow:0 0 0 100px white inset; 
            -webkit-text-fill-color: #666;
        }
        input:-webkit-autofill:focus {
            -webkit-box-shadow:0 0 0 100px white inset;
            -webkit-text-fill-color: #666;
        }
    </style>
</head>
<body>
    <form action="http://baidu.com" method="POST">
        <input type="text" name="username">
        <input type="submit" value="提交">
    </form>
</body>
</html>
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题