这是我的 html 表格代码:
<table border='1px'>
<tr>
<td id='td'>first</td>
<td>last</td>
<tr>
<td id='td'>newFirst</td>
<td>newSecond</td>
</table>
这是我的一个 div。
<div class="Not_Editable id-left" >Not Editable</div>
当我将鼠标悬停在我的桌子上时,我只是创建了这个 div,首先 td 然后想在他们身上显示这个 div。并悬停在第二个 td 上然后不显示。
这是用于创建 div 作为标题标签的 css。
<style>
.Not_Editable {
position: relative;
background-color: #292929;
width: 100px;
height: 30px;
line-height: 30px; /* vertically center */
color: white;
text-align: center;
border-radius: 10px;
font-family: sans-serif;
}
.Not_Editable:after {
content: '';
position: absolute;
width: 0;
height: 0;
border: 15px solid;
}
.id-left:after {
border-right-color: #292929;
top: 50%;
right: 95%;
margin-top: -15px;
}
</style>
jsfiddle http://jsfiddle.net/9VPPv/
现在我该怎么做。帮我解决这个问题。