為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

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.