1

此网页在 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中的具体问题是什么。

任何帮助,将不胜感激。

4

1 回答 1

2

发现问题:

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

现在看起来像这样:

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

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

 .clear { clear:both; }

然后在右栏的末尾插入明确的中断。像这样:

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

那将解决它。

于 2010-09-19T05:13:15.380 回答