可以配置 IE AutoComplete 宽度吗?

Can IE AutoComplete width be configured?

"AutoComplete"弹窗的宽度可以在IE中设置吗? (版本 11 或边缘)

弹出窗口的宽度在某些情况下太窄,如下面的屏幕截图所示:

EDIT1:添加了最小示例

你能 post 足够的代码来重现 Minimal, Complete, and Verifiable example 中的问题吗?

如果您使用AutoComplete in Internet Explorer 11 and HTML autocomplete Attribute,您可以尝试设置文本框宽度属性,自动完成弹出宽度取决于文本框宽度,您可以查看此示例:

<form action="/action_page.php" autocomplete="on">
  First name:<input type="text" style="width:200px;" name="fname"><br>
  Last name: <input type="text" style="width:300px;" name="lname"><br>
  E-mail: <input type="email" name="email" autocomplete="off"><br>
  <input type="submit">
</form>

截图如下:

如果您不是使用上述方法显示弹窗,请post相关代码。