我对工具提示有疑问,工具提示隐藏在表格标题后面,或者显示在一个未显示的框中。
请参考尖端隐藏在另一个div后面的图像 (图片中显示的营销在提示中):
.tooltipCustom {
position: relative;
display: inline-block;
}
.tooltipCustom .tooltipCustomtext {
visibility: hidden;
width: 120px;
background-color: #efeee6;
color: #868474;
text-align: center;
border-radius: 6px;
padding: 5px 0;
border-width: 1px;
border-style: solid;
border-color: black;
/* Position the tooltip */
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -60px;
}
.tooltipCustom:hover .tooltipCustomtext {
visibility: visible;
}
<div class='tooltipCustom'>
<sup style="vertical-align: top">
Something
</sup>
<span class='tooltipCustomtext'>
Underlying price: List price <br/>
Applied Discounts: Marketing
</span>
</div>
答案 0 :(得分:0)
修复
/* Position the tooltip */
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -60px;
例如
/* Position the tooltip */
position: absolute;
top: 20px;
left: 50%;
margin-left: 0;
答案 1 :(得分:0)
我认为上面的div定义了一个z-index,您需要在工具提示上放一个较高的z-index值,使其位于上一个div的前面:
.mypreviousDiv {
z-index: 100;
}
.tooltipCustom .tooltipCustomtext {
z-index: 101; // ou higher, for tooltips we can put 9999
}