在将鼠标从一个元素移动到另一个元素时,如果两个元素的title属性相同,则工具提示位置不会改变。
Chrome问题:https://code.google.com/p/chromium/issues/detail?id=142002
Chrome版测试版:44.0.2403.130
body
{
padding: 50px;
}
div
{
width: 500px;
height: 200px;
background-color: #eeeeff;
}
div:hover
{
background-color: #ddddff;
}

<div title="Title Attribute Value">Hover → HERE ←</div>
<div title="Title Attribute Value">Then move the mouse to here</div>
<br><br><br>
<div title="Title Attribute Value">Hover → HERE ←</div>
<div title="Something Different" class="second">Then move the mouse to here</div>
&#13;
寻找可能的解决方法。