Firefox 3.6 毁了我的页面样式!
我真的不想把这个问题归咎于 Mozilla,我确信这可能是我做了一些愚蠢的事情,但是页面位于:
www.mozilla.com。 neverMindFixed .com
该演示文稿在其他浏览器上可以正常运行,但不能在最新的 Firefox 上运行。有人知道这一点吗?
谢谢!
硅
Don't really want to blame mozilla on this one, i'm sure it could be me doing something silly but the page at:
www. neverMindFixed .com
the presentation will work fine on other browsers, just not the latest firefox. anyone clued up on this?
Thanks!
Si
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
好吧,首先,你的 CSS 很乱。其次,有这样的声明:
请注意 URL 周围非常重要的缺少第二个
)
。看来FF 3.6更加挑剔一些。Okay, firstly, your CSS is a mess. Secondly, there's this declaration:
Note the very important missing second
)
around the URL. Looks like FF 3.6 is a bit more picky.您有
visible:false;
——“false”不是有效值。您要么指的是visibility:collapse;
,但它在旧版浏览器中的支持可能很差,要么指的是旧的备用display: none;
。请 验证您的 CSS。
You have
visible:false;
-- "false" is not valid value. You either meanvisibility: collapse;
, but that likely has poor support in older browsers, or the old standbydisplay: none;
.Please validate your CSS.
有很多 页面上的验证错误,这可能会导致问题。这些听起来最重要:
也正如匿名者所指出的,存在 CSS 错误。没有属性
visible
- 我猜你想要visibility:hidden
。但我确信你不需要隐藏那么多东西。There are a lot of validation errors on the page, which could be causing problems. These ones sound most important:
Also as Anonymous pointed out, there are CSS errors. There is no property
visible
- I'm guessing you wantvisibility: hidden
. But I'm positive you don't need so many things hidden.对我来说,您的网站可以在 Firefox 3.5 和 Chrome 上运行,但 Firefox 3.6 有问题。您的演示文稿正在运行,但
标签会显示出来,而不是保持隐藏状态。
为什么这些标签在那里?
如果你想保留它们,你可能想要清理你对“隐藏”类的定义,就像匿名所说,你不能指定“visible: false”。删除它,然后验证其余的 CSS 和 HTML。确实有很多错误。
For me also, your website is working on Firefox 3.5 and on Chrome, but Firefox 3.6 has problems. Your presentation is working, but the
tags are showing up instead of remaining hidden.
Why are those tags there?
If you want to keep them, you probably want to clean up your definition of the "hidden" class, like Anonymous says, you cannot specify "visible: false". Remove it, and then validate the rest of your CSS and HTML. There are really a lot of errors.