首页 > 解决方案 > 如何在mac上禁用自动填充?

问题描述

我在mac上使用了很多隐藏自动填充的例​​子,但它对我不起作用..

<style>
    input::-webkit-autofill
</style>
<div class="form">
    <input type="text" class="form-control" autocomplete="off" />
    <input type="email" class="form-control" autocomplete="off" />

    <button type="submit"><i class="material-icons send"></i></button>
</div>

但这对我不起作用

请给我一个更好的例子...

标签: javascripthtmlcss

解决方案


推荐阅读