为什么我的“边距:30px”是指令被忽略?
我在设置页面上两个元素之间的边距时遇到困难。
这里描述了一个示例: http://jsfiddle.net/fHC9Y/1/
您可以看到表格下方的分页结构和页脚框之间没有空间,我在 CSS 中指定它们之间应该有 30px 的空间。
这是 IE8 和 IE8 中的问题。 Firefox(没有尝试过其他浏览器)。
有谁知道这可能是什么?
I'm having difficulty with setting the margin between 2 elements on my page.
An example is depicted here: http://jsfiddle.net/fHC9Y/1/
You can see that there's no space between the paging structure under the table and the footer box, where I've specified in the CSS that there should be 30px of space between them.
This is an issue in IE8 & Firefox (haven't tried other browsers).
Does anyone have any idea what this could be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(5)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
尝试在表格和页脚之间添加
。
Try adding a
<p style="clear:both"/>
between your table and the footer.