Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

Why, in Firefox, is only the top/first half of a particular page visible?

  • 4 trả lời
  • 4 gặp vấn đề này
  • 14 lượt xem
  • Trả lời mới nhất được viết bởi DUKEMASKELL

more options

The page in question is http://www.edgewaysbooks.com/shop.html
The whole page is visible in IE and Chrome but, when scrolling down in Firefox, the visible page comes to an end about half-way. In the source code, the whole page is there. I am not the only person who has met the problem.

The page in question is http://www.edgewaysbooks.com/shop.html<br /> The whole page is visible in IE and Chrome but, when scrolling down in Firefox, the visible page comes to an end about half-way. In the source code, the whole page is there. I am not the only person who has met the problem.

Được chỉnh sửa bởi cor-el vào

Giải pháp được chọn

That is a problem with the HTML5 parser and the above mentioned problem with the unclosed FONT tags. That is causing a lot of deep nesting and the HTML5 parser can't cope with that. In older Firefox versions it was possible to disable the HTML5 parser in such a case as a work around, but that is no longer possible. So that code needs to be cleaned up.


(please do not comment in bug reports)

Đọc câu trả lời này trong ngữ cảnh 👍 1

Tất cả các câu trả lời (4)

more options

Here's what I found. First, it's always good to run a page through the w3c validator to check for errors. Usually rendering problems are caused by a code error. In this case there are lot.

That said, you are right that it works in IE and Chrome. Different browsers deal with errors differently. From looking at the source code and error messages, my guess is that is has something to do with the <font> tags. The first one is opened on line 61 and don't get closed until line 821. In between, they are all nested one inside the other. Ultimately, that may not be the cause but it's hard to tell until things like that are fixed.

more options

Giải pháp được chọn

That is a problem with the HTML5 parser and the above mentioned problem with the unclosed FONT tags. That is causing a lot of deep nesting and the HTML5 parser can't cope with that. In older Firefox versions it was possible to disable the HTML5 parser in such a case as a work around, but that is no longer possible. So that code needs to be cleaned up.


(please do not comment in bug reports)

Được chỉnh sửa bởi cor-el vào

more options

Thank you. Will get in touch with the site owners and tell them. When I learn the result, will get back to the forum.

more options

Suggested to site owners they look at your explanation of the problem. They've done so, applied the solution suggested, and ... problem solved! Thanks all round.