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

Page text changes on mouseover

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

more options

I'm trying to look at a site that REQUIRES compatibility mode in IE be turned on to view properly, but I can't find that option anywhere in Firefox 7.0.1.

I'm trying to look at a site that REQUIRES compatibility mode in IE be turned on to view properly, but I can't find that option anywhere in Firefox 7.0.1.

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

more options

Sorry, Firefox is not able to view web sites that require IE compatibility mode. Those sites use non-standard code that works only in IE.

more options

The site worked before. If you check out the site in question , you'll see it was designed for Firefox and was browser neutral. I DEVELOPED THE SITE! Basically put, as soon as my mouse goes over the text area of the page, it changes the font to bold. This happened in IE as well, but went away when I made IE use compatibility mode.

more options

I see the same in Google Chrome.

Looks that is is caused by a missing close </a> in <a name="skip_nav">


<span class="pathway"><span class="pathway">Home </span>
</span><br><hr>
<P>
<a name="skip_nav">

The currently used HTML5 parser doesn't like such omissions and reopens the a tags for each P container and applies the CSS rules for hover.
It works if I disable the HTML5 parser.

more options

You rock! I've been beating myself up for months looking for this, and it was that simple. Correction made and the site works perfectly. Sorry to report an HTML error as a Firefox error. I should have known better. After all, you're NOT Microsoft!

more options

You're welcome

I used the DOM Inspector and moved the cursor up in the left pane with the computed CSS in the right pane while hovering the mouse on the website until I saw the font-weight bold changing from 700 to 400 and then checked the code of that A element.