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".

Learn More

Why is the display incorrect for https://www.imdb.com/title/tt6806448/fullcredits only in 68.0.1?

  • 8 trả lời
  • 1 gặp vấn đề này
  • 10 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

compare: https://www.imdb.com/title/tt6806448/fullcredits in v68.0.1

to any other version of Firefox - or even other browsers.

Something in 68.0.1 doesn't like the style? What is wrong?

compare: https://www.imdb.com/title/tt6806448/fullcredits in v68.0.1 to any other version of Firefox - or even other browsers. Something in 68.0.1 doesn't like the style? What is wrong?

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

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

more options

I see nothing wrong.

In order to better assist you with your issue please provide us with a screenshot. If you need help to create a screenshot, please see How do I create a screenshot of my problem?

Once you've done this, attach the saved screenshot file to your forum post by clicking the Browse... button below the Post your reply box. This will help us to visualize the problem.

Thank you!

more options

I see it now. The first picture is from v84.0.1 The second is from Firefox v54 (my primary).

Zoom has no effect.

more options

I created a stripped down example of what they are doing:

https://jsfiddle.net/es4fox1g/

Not sure why the text doesn't overlap the floated border line in Firefox.

You could submit a web (in)compatibility report on the following site:

https://webcompat.com/

more options

Safe mode has no effect.

more options

Seems Firefox is reluctant to move the text into space creating by using margins to move the floated content down:

https://jsfiddle.net/4extu9qy/

This could be caused by optimizing layout calculations so they don't run more often than needed. Sometimes the extra run is needed.

more options

That is a weird problem that only seems to happen in Firefox 68.

This seems to be about a float:left rule for the "H4::before" selector that seems to be applied to the H4 container. When I open the Inspector then it is instantly corrected.

This code in userContent.css fixes it for me.


@-moz-document domain(www.imdb.com){
.dataHeaderWithBorder::before {
    content: "";
    border-bottom: 1px dotted #CCC;
    width: 100%;
    float: none !important;
}

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

more options

jscher2000 said

I created a stripped down example of what they are doing: https://jsfiddle.net/es4fox1g/ Not sure why the text doesn't overlap the floated border line in Firefox. You could submit a web (in)compatibility report on the following site: https://webcompat.com/

I've done that: https://webcompat.com/issues/37344 thanks

more options

I only see this happen with Firefox 68. Firefox 67 and 69 work properly, so it looks that this is a regression in 68 that has been fixed, but that hasn't been back ported.