HTML 表单标签在 IE 7 和 IE 8 中创建额外空间
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.在css中添加
display : inline;
如下:Add
display : inline;
in the css as follows: