为什么在其中使用<strong>标记</strong>时,链接的标题不会显示

时间:2013-06-20 12:56:40

标签: html internet-explorer google-chrome

代码

以下是HTML代码:

<li>
  <a href="./hacks/hacks.html" title="Break the rules with techniques, not malicious invasion into computer and destroy the computer network.">
    <strong>HACKS</strong>
  </a> -
  <em>Break the rules with techniques, not malicious invasion into computer and destroy the computer network.</em>
</li>

问题

问题是当我将鼠标焦点放在链接上时,标题使用技术破坏规则,而不是恶意入侵计算机并破坏计算机网络。)不会出现。当我删除 HACKS 之间的<strong></strong>时,它可以正常工作。 ( IE 10

截图

  • 屏幕截图 - 适用于没有<strong></strong> Title works without strong的IE 10 [title-works-without-strong]
  • 屏幕截图 - 在使用<strong><strong> Title doesn't work with strong
  • 的IE 10中无效

将浏览器更改为 Chrome 27 后,标题有效。

伙计们,有什么解释吗?

2 个答案:

答案 0 :(得分:3)

如何在锚之外移动强者:

<li>
  <strong><a href="./hacks/hacks.html" title="Break the rules with techniques, not malicious invasion into computer and destroy the computer network.">
    HACKS
  </a></strong> -
  <em>Break the rules with techniques, not malicious invasion into computer and destroy the computer network.</em>
</li>

在IE7上测试

答案 1 :(得分:0)

这样说。

<a href="..hacks\hack.html">PUT YOUR TITLE HERE</a>

你不需要像你一样的标题标签。将链接的标题放在a标记和结束标记之间。 希望有所帮助。