IE为输入type=“text”添加了滚动条
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到原因了!在我的样式表中,我有以下内容:
这是 修复 Firefox-Bug :-)
I found the cause! In my stylesheet I had the following:
which is a fix for a Firefox-Bug :-)