IE为输入type=“text”添加了滚动条

发布于 2024-10-14 05:01:50 字数 228 浏览 3 评论 0原文

在我的 GWT 应用程序中,我有一些文本框。没什么特别的,只是

<input type="text" tabindex="4" class="gwt-TextBox">

在 IE 8 中我有一个奇怪的行为:如果包含的文本比文本框长,则文本框内会显示水平滚动条(是的,滚动条隐藏文本)。

在 Firefox 中一切都很好。这是为什么?有什么想法吗?

In my GWT application I have some text boxes. Nothing special, just

<input type="text" tabindex="4" class="gwt-TextBox">

In IE 8 I have a strange behaviour: If the containing text is longer that the text box, a horizontal scroll bar is displayed inside the box (and yes, the scroll bar hides the text).

In Firefox everything's fine. Why is that? Any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泅渡 2024-10-21 05:01:50

我找到原因了!在我的样式表中,我有以下内容:

.dialog input[type="text"],
.dialog input[type="password"],
.dialog textarea {
    overflow: auto;
}

这是 修复 Firefox-Bug :-)

I found the cause! In my stylesheet I had the following:

.dialog input[type="text"],
.dialog input[type="password"],
.dialog textarea {
    overflow: auto;
}

which is a fix for a Firefox-Bug :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文