为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

The links on some websites don't work (Works in Chrome)

  • 6 个回答
  • 2 人有此问题
  • 18 次查看
  • 最后回复者为 cor-el

more options

The links on some websites don't work in Firefox, but they work in Chrome. Nothing happens when clicking on the link. For example, try clicking on the "Features" link on this site: http://mysleepbot.com/

The links on some websites don't work in Firefox, but they work in Chrome. Nothing happens when clicking on the link. For example, try clicking on the "Features" link on this site: http://mysleepbot.com/

所有回复 (6)

more options

The problem is in website css, if you check the console(Ctrl+Shift+K) you can see some styles being dropped. The phones' image is staying exactly over the menu.

more options

Thank you for your answer, but I am sorry that I do not understand...

I have never used the Console. If I open it on another website (e.g. this Mozilla support page), I get a bunch of info. If I open it on http://mysleepbot.com/ it is blank. Not sure what to do with this?

Can I somehow make the website links to work in Firefox or is it a fixable bug? As I mentioned above, the links work fine in Chrome.

p.s. What did you mean by "The phones' image is staying exactly over the menu." How can you see that?

由viking2于修改

more options

The solution is notify the site owners, they can solve this problem, I mentioned the console only to you know the problem is on website not in your browser. There are differences between Firefox and Chrome, this is why the page works in one and not another, probably some CSS selector is not supported by Firefox is the problem

more options

It is caused by the margin-top:-60px setting for the DIV .hero_device right container. This causes this container to cover the DIV .navheader (the top part of the Sign Up button is still active).

Reducing to margin-top:-20px make the line clickable.

.hero_device {
    background: url('/resources/public2/img/hero_device.png') no-repeat;
    height: 760px;
    width: 630px;
    display:inline;
    padding: 0 10px 0 0;
    margin: -60px 0 0 0; /* change to margin: -20px 0 0 0; */
    position:absolute;

}
more options

I I have found several sites with this issue (works in Chrome but not in Firefox). Couldn't the CCS selector be "fixed" in Firefox? Otherwise, I would need to switch to Chrome every time I encounter a problematic website.

more options

Actually Google Chrome shows an a issue as well on that page as the container I mentioned above covers the bottom part of the Sign UP button (below the text), so it is less worse than in Firefox.