firefox 3.6 /mac os 中的网页布局问题

发布于 2024-09-24 15:57:20 字数 521 浏览 3 评论 0原文

此网页在 firefox 3.6 /mac os 中无法正确显示。

http://solcuisine.com/dev/?page_id=2

.. 方法如下它在 firefox3.6/mac 中查找:

firefoxmac.png 位于同一域的 dev/ 目录中(抱歉,无法在此处发布多个链接)

http://solcuisine.com/dev/firefoxmac.png

CSS 已在 w3.org 中验证。该页面在 vista/xp、safari、chrome、ie8/7 和 opera 中的 firefox 3.6 中看起来不错。无法弄清楚 css 中的具体问题是什么。

任何帮助将不胜感激。

This web page does not display correctly in firefox 3.6 /mac os.

http://solcuisine.com/dev/?page_id=2

.. and here's how it looks in firefox3.6/mac:

firefoxmac.png located in dev/ directory of same domain (sorry, can't post more than one link here)

http://solcuisine.com/dev/firefoxmac.png

The css has been validated in w3.org. And the page looks okay in firefox 3.6 in vista/xp, safari, chrome, ie8/7 and opera. Can't figure out what's the specific problem in css.

Any help would be appreciated.

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

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

发布评论

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

评论(1

人事已非 2024-10-01 15:57:20

发现问题:

你需要在#content .page(style.css第295行)中关闭“overflow:auto”,

现在看起来像这样:

#content .page {
    background:url("images/pagecontent-bg.png") repeat-x scroll center bottom #FFFFFF;
    overflow:auto; /*DELETE THIS LINE*/
    padding-bottom:50px;
}

然后你需要添加一个“clear break”。如果您还没有,请创建一个名为clear的样式:

 .clear { clear:both; }

然后在右列末尾之后插入clear分隔符。就像这样:

<div class="right">
    ...your right columns is here...
</div>
<br class="clear" />

那就解决它了。

Found the problem:

You need to turn off "overflow:auto" in #content .page (style.css line 295)

It looks like this right now:

#content .page {
    background:url("images/pagecontent-bg.png") repeat-x scroll center bottom #FFFFFF;
    overflow:auto; /*DELETE THIS LINE*/
    padding-bottom:50px;
}

Then you need to add a "clear break". If you don't have it already, create a style called clear:

 .clear { clear:both; }

Then insert the clear break after the end of your right column. Like so:

<div class="right">
    ...your right columns is here...
</div>
<br class="clear" />

That will fix it.

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