Firefox 中首次进入不易点击的问题,是一个错误吗?

发布于 2024-08-09 02:42:40 字数 271 浏览 2 评论 0原文

注意第一个表中蓝色的部分。

可以在此处查看问题

替代文本 http://51hired.com/static/problem.gif

编辑 双击第一个条目的上部即可复制。

Pay attention to the part in blue in the first table.

Can check out the problem here

alt text http://51hired.com/static/problem.gif

EDIT
reproduce by double click at the upper part of first entry.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一个人的夜不怕黑 2024-08-16 02:42:40

如果您在 FireFox 中选择不可见文本和“查看选择源”,您将获得以下源:

<div class="sub_i_title">
  <a href="/questions/" style="float: right; margin-right: 10px;">更多»»</a>
  <h2 style="line-height: 1em; display: block;">最新的问题</h2>                                                         
</div>

您的源是否有错误的空格?我估计问题出在下面这行:

"<h2>最新的问题</h2>                                                         "

如果您在页面上选择全部,您会发现每个 H2 下都有相同数量的空白,并且它似乎覆盖了每个列表中的第一个链接。

事实上,如果您保存页面并在编辑器中打开它,您可以在其中查看每个字符的 ASCII/HEX 值,您会发现有问题的空白字符实际上是十六进制的 A0,但是正常的空格是20。是否可能是您激活了输入法并插入了错误的空白字符?

If you select the invisible text and "View Selection Source" in FireFox you'll get the following source:

<div class="sub_i_title">
  <a href="/questions/" style="float: right; margin-right: 10px;">更多»»</a>
  <h2 style="line-height: 1em; display: block;">最新的问题</h2>                                                         
</div>

Could it be that your source has bad whitespace? I estimate that the problem is the following line:

"<h2>最新的问题</h2>                                                         "

If you Select All on the page, you'll find that under each H2 there is the same amount of white space, and it seems to be covering the first link in each list.

In fact, if you save your page and open it in an editor where you can see the ASCII/HEX values for each character, you'll find that the offending whitespace characters are actually A0 in HEX, but a normal space is 20. Could it be that you have an IME activated and a bad whitespace character was inserted?

豆芽 2024-08-16 02:42:40

我记得在 bugzilla.mozilla.org 中看到过类似的错误报告,但为了找到任何明确的信息,您需要创建一个 简单测试用例

然后就可以判断它是否是一个错误并尝试找到它的当前状态。

或者您可以尝试在 bugzilla.mo 中搜索类似问题;很难判断您发现的问题是否与您的问题相同或只是具有相似的影响。

I remember seeing similar bug reports in bugzilla.mozilla.org, but in order to find out anything definitive about this, you'll need to create a simple testcase.

Then it's possible to tell if it's a bug and try to find its current status.

Or you could try searching bugzilla.m.o for similar issues; it'll be hard to tell if the problem you found is the same as yours or simply has similar effects.

风吹雪碎 2024-08-16 02:42:40

它上面的 h2 的行高太高,它重叠了。我会说设置 z-indexes 来修复它或更改 h2 行高。

更多内容请阅读:http://www.w3schools.com/Css/css_positioning.asp

The line-height of the h2 above it is too high, it's overlapping. I'd say set z-indexes to fix it or change the h2 line-height.

More reading here: http://www.w3schools.com/Css/css_positioning.asp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文