firefox 3.6 /mac os 中的网页布局问题
此网页在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发现问题:
你需要在#content .page(style.css第295行)中关闭“overflow:auto”,
现在看起来像这样:
然后你需要添加一个“clear break”。如果您还没有,请创建一个名为clear的样式:
然后在右列末尾之后插入clear分隔符。就像这样:
那就解决它了。
Found the problem:
You need to turn off "overflow:auto" in #content .page (style.css line 295)
It looks like this right now:
Then you need to add a "clear break". If you don't have it already, create a style called clear:
Then insert the clear break after the end of your right column. Like so:
That will fix it.