为什么 FireFox 中没有边距?

发布于 2024-11-02 01:48:34 字数 227 浏览 1 评论 0原文

http://dl.dropbox.com/u/18795563/BLOGDESIGNNEW/index.html 在FireFox中,为什么标题中的hgroup左侧没有边距?它在 Chrome 和 Safari 中运行良好。我如何让它在 FireFox 中工作?

http://dl.dropbox.com/u/18795563/BLOGDESIGNNEW/index.html
In FireFox, Why is there no margin on the left of the hgroup in the header? It works fine in Chrome and Safari. How do i make it work in FireFox?

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

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

发布评论

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

评论(5

凡间太子 2024-11-09 01:48:34

我认为问题在于 hgroup 的默认显示设置是内联的。将其设置为阻止将解决边距问题。

#topheader hgroup {
  display:block;
}

I believe the problem is that the hgroup's default display setting is inline. Setting it to block will fix your problem with the margin.

#topheader hgroup {
  display:block;
}
盗梦空间 2024-11-09 01:48:34

这对我来说看起来像是一个边际。

Firefox4+Firebug

This looks like a margin to me.

Firefox4+Firebug

梦里的微风 2024-11-09 01:48:34

检查页面的 html 代码后,我在 #topheader hgroup css 中发现了以下问题:

overflow:visible:; 从可见末尾删除该列。即溢出:可见;

after inspecting the html code of your page, I figured out the following issue in #topheader hgroup css:

overflow: visible:; Remove the column from the end of visible. i.e. overflow: visible;

笔芯 2024-11-09 01:48:34

哪个版本的火狐浏览器? Firefox4 确实显示边距,但 FF3.x 可能不会,因为它没有新 HTML5 元素的内置样式。您必须添加“display:block”才能正确渲染。

Which version of Firefox? Firefox4 DOES show the margin but FF3.x may not because it does not have built-in styles for the new HTML5 elements. You must add 'display:block' for proper rendering.

计㈡愣 2024-11-09 01:48:34

保证金在大多数情况下不起作用。那是因为它应该计算与外部元素的距离。这很困难。

您应该尝试填充而不是边距:

#topheader hgroup {
padding: 1em;
overflow: visible;
}

还将 : 更改为 ; ;)

这适用于所有浏览器。

Margin does not work in most case. and that is becaus it should calculate distance with elements outside. and this is dificult.

you should try padding instead of margin:

#topheader hgroup {
padding: 1em;
overflow: visible;
}

also change : to ; ;)

this will work in every browsers.

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