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

Alb*_*ert 5 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>
Run Code Online (Sandbox Code Playgroud)

问题

问题是当我把鼠标集中在链接上时,标题(用技术打破规则,而不是恶意入侵计算机并破坏计算机网络.)将不会出现.当我删除<strong></strong>之间的HACKS时,它的工作原理.(IE 10)

截图

  • 截图 - 适用于没有的IE 10 <strong></strong> 标题的作用没有强大 [冠军作品 - 不强]
  • 截图 - 在IE 10中不起作用 <strong><strong> 标题不适用于强者

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

伙计们,有什么解释吗?

dan*_*rob 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>
Run Code Online (Sandbox Code Playgroud)

在IE7上测试