设置autocomplete =“ on”后如何删除背景色

时间:2019-07-15 02:17:23

标签: javascript html css

请认为我是网络开发的初学者。问题是,当我在<form></form>环境中打开自动完成功能时,搜索框的颜色会从黑色变成白色(也许是我猜是flex设置的)。我想知道有什么方法可以保持颜色不变。

<form autocomplete="on">
    <div style="display:flex;flex-direction:row">
        <label id="email" for="email" style="padding-right:5px">email:</label>
        <input id="email" type="email" name="email" style="flex:1" placeholder="e.g. aaa@bbb.com" />
        <button id="ack" type="submit">Submit</button>
    </div>
</form>

搜索框的初始颜色:黑色(通过flex?)
image 自动补全后的颜色
image

0 个答案:

没有答案