HTML 表单标签在 IE 7 和 IE 8 中创建额外空间

发布于 2024-12-09 17:49:35 字数 163 浏览 0 评论 0原文

我在 IE 7 和 8 中遇到标签问题 我在这些浏览器的 css 片段中遇到了一些不需要的空间。

form{margin:0;padding:0;text-align:left;}

此 css 仅在 IE 7 和 8 上失败请告诉我我做错了什么

I am having an issue with tags in IE 7 and 8
there are some unwanted spaces which I am experiences on these browsers my css snippet.

form{margin:0;padding:0;text-align:left;}

This css fails only on IE 7 and 8 Please let me what I am doing wrong

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

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

发布评论

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

评论(2

嗼ふ静 2024-12-16 17:49:36

IE7 和 8 中存在一个错误,如果表单前面有未闭合的

标记,则会在表单上方创建一个额外的框。关闭

应该可以解决该问题。

There is a bug in IE7&8 where if a form is preceded by an unclosed <p> tag, it will create an extra box above the form. Closing the <p> should fix the issue.

℡Ms空城旧梦 2024-12-16 17:49:35

在css中添加 display : inline; 如下:

form{margin:0;padding:0;text-align:left;display: inline;}

Add display : inline; in the css as follows:

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